some housecleaning

This commit is contained in:
cnst
2024-09-06 18:38:30 +02:00
parent a00bf4b815
commit d519bc624b
8 changed files with 107 additions and 25 deletions

View File

@@ -1,5 +1,5 @@
{
description = "My (i.e. fufexan's) NixOS flake configuration";
description = "Flake config, _heavily_ influenced by fufexan's";
outputs = inputs:
inputs.flake-parts.lib.mkFlake {inherit inputs;} {
@@ -23,12 +23,13 @@
};
inputs = {
# nix environs
# Nix environment
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-small.url = "github:NixOS/nixpkgs/nixos-unstable-small";
systems.url = "github:nix-systems/default-linux";
hardware.url = "github:nixos/nixos-hardware";
lanzaboote.url = "github:nix-community/lanzaboote";
nixpak = {
url = "github:nixpak/nixpak";
inputs = {
@@ -36,31 +37,30 @@
flake-parts.follows = "flake-parts";
};
};
flake-utils = {
url = "github:numtide/flake-utils";
inputs.systems.follows = "systems";
};
flake-compat.url = "github:edolstra/flake-compat";
hm = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
# cachyos
chaotic.url = "https://flakehub.com/f/chaotic-cx/nyx/*.tar.gz";
#hmm
helix.url = "github:SoraTenshi/helix/new-daily-driver";
# hyprland environ
# Hyprland environment
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1";
hyprland-contrib = {
url = "github:hyprwm/contrib";
inputs.nixpkgs.follows = "hyprland/nixpkgs";
};
hyprlock = {
url = "github:hyprwm/hyprlock";
inputs = {
@@ -70,6 +70,7 @@
systems.follows = "hyprland/systems";
};
};
hypridle = {
url = "github:hyprwm/hypridle";
inputs = {
@@ -79,6 +80,7 @@
systems.follows = "hyprland/systems";
};
};
hyprpaper = {
url = "github:hyprwm/hyprpaper";
inputs = {
@@ -88,6 +90,12 @@
systems.follows = "hyprland/systems";
};
};
# Cachyos
chaotic.url = "https://flakehub.com/f/chaotic-cx/nyx/*.tar.gz";
# Miscellaneous
helix.url = "github:SoraTenshi/helix/new-daily-driver";
nix-gaming = {
url = "github:fufexan/nix-gaming";
inputs = {
@@ -95,30 +103,30 @@
flake-parts.follows = "flake-parts";
};
};
firefox-nightly = {
url = "github:nix-community/flake-firefox-nightly";
inputs.nixpkgs.follows = "nixpkgs";
};
# Third party programs, packaged with nix
firefox-addons = {
url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons";
inputs.nixpkgs.follows = "nixpkgs";
};
anyrun.url = "github:anyrun-org/anyrun";
microfetch.url = "github:NotAShelf/microfetch";
agenix.url = "github:ryantm/agenix";
# rust toolchain
# Rust toolchain
fenix = {
url = "github:nix-community/fenix";
inputs.nixpkgs.follows = "nixpkgs";
};
wezterm = {
url = "github:wez/wezterm/main?dir=nix";
inputs.nixpkgs.follows = "nixpkgs";
};
# naersk = {
# url = "github:nix-community/naersk";
# inputs.nixpkgs.follows = "nixpkgs";
# };
};
}