diff options
| author | Fuwn <[email protected]> | 2024-09-19 16:07:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-19 16:07:19 -0700 |
| commit | 54012ce08d2407ef01df4d3eb029834ecbeb701f (patch) | |
| tree | abb73aad7d2ef8b179fc0b2cb25bebd3ab5a330f | |
| parent | himeji: add gigi (diff) | |
| download | nixos-config-54012ce08d2407ef01df4d3eb029834ecbeb701f.tar.xz nixos-config-54012ce08d2407ef01df4d3eb029834ecbeb701f.zip | |
flake: reorder inputs
| -rw-r--r-- | flake.nix | 120 |
1 files changed, 60 insertions, 60 deletions
@@ -46,13 +46,18 @@ }; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; + chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; nur.url = "github:nix-community/NUR"; + nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; systems.url = "github:nix-systems/default"; - chaotic.url = "github:chaotic-cx/nyx/nyxpkgs-unstable"; - tailray = { - url = "github:NotAShelf/tailray"; + aagl = { + url = "github:ezKEa/aagl-gtk-on-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + disko = { + url = "github:nix-community/disko"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -61,8 +66,25 @@ inputs.nixpkgs-lib.follows = "nixpkgs"; }; - omnix = { - url = "github:juspay/omnix"; + flake-registry = { + url = "github:NixOS/flake-registry"; + flake = false; + }; + + home-manager = { + url = "github:nix-community/home-manager"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + hyprfocus = { + url = "github:pyt0xic/hyprfocus"; + inputs.hyprland.follows = "hyprland"; + }; + + hyprland = { + type = "git"; + url = "https://github.com/hyprwm/Hyprland"; + submodules = true; inputs = { nixpkgs.follows = "nixpkgs"; @@ -70,8 +92,17 @@ }; }; - spicetify-nix = { - url = "github:the-argus/spicetify-nix"; + hyprland-plugins = { + url = "github:hyprwm/hyprland-plugins"; + + inputs = { + hyprland.follows = "hyprland"; + systems.follows = "systems"; + }; + }; + + nix-alien = { + url = "github:thiagokokada/nix-alien"; inputs.nixpkgs.follows = "nixpkgs"; }; @@ -80,25 +111,23 @@ inputs.nixpkgs.follows = "nixpkgs"; }; - nix-thorium = { - url = "github:almahdi/nix-thorium"; + nix-index-database = { + url = "github:nix-community/nix-index-database"; inputs.nixpkgs.follows = "nixpkgs"; }; - nix-alien = { - url = "github:thiagokokada/nix-alien"; + nix-search = { + url = "github:diamondburned/nix-search"; inputs.nixpkgs.follows = "nixpkgs"; }; - pre-commit-hooks = { - url = "github:cachix/git-hooks.nix"; + nix-thorium = { + url = "github:almahdi/nix-thorium"; inputs.nixpkgs.follows = "nixpkgs"; }; - hyprland = { - type = "git"; - url = "https://github.com/hyprwm/Hyprland"; - submodules = true; + omnix = { + url = "github:juspay/omnix"; inputs = { nixpkgs.follows = "nixpkgs"; @@ -106,33 +135,14 @@ }; }; - home-manager = { - url = "github:nix-community/home-manager"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - nix-index-database = { - url = "github:nix-community/nix-index-database"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - pia = { url = "git+https://git.sr.ht/~rprospero/nixos-pia?ref=development"; inputs.nixpkgs.follows = "nixpkgs"; }; - hyprland-plugins = { - url = "github:hyprwm/hyprland-plugins"; - - inputs = { - hyprland.follows = "hyprland"; - systems.follows = "systems"; - }; - }; - - hyprfocus = { - url = "github:pyt0xic/hyprfocus"; - inputs.hyprland.follows = "hyprland"; + pre-commit-hooks = { + url = "github:cachix/git-hooks.nix"; + inputs.nixpkgs.follows = "nixpkgs"; }; pywal-nix = { @@ -144,11 +154,6 @@ }; }; - nix-search = { - url = "github:diamondburned/nix-search"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - rui = { url = "github:Fuwn/rui"; @@ -158,6 +163,16 @@ }; }; + spicetify-nix = { + url = "github:the-argus/spicetify-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + + tailray = { + url = "github:NotAShelf/tailray"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + tsutsumi = { url = "github:Fuwn/tsutsumi"; @@ -167,20 +182,5 @@ rui.follows = "rui"; }; }; - - flake-registry = { - url = "github:NixOS/flake-registry"; - flake = false; - }; - - aagl = { - url = "github:ezKEa/aagl-gtk-on-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - }; - - disko = { - url = "github:nix-community/disko"; - inputs.nixpkgs.follows = "nixpkgs"; - }; }; } |