diff options
| author | Fuwn <[email protected]> | 2024-09-17 18:42:22 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-17 18:42:22 -0700 |
| commit | da4e16d6716c27191e694257159c226c6cda5aab (patch) | |
| tree | 9b552504f49811a1f6555495c85a60093dec53df /flake.nix | |
| parent | rui: new-style rui (diff) | |
| download | nixos-config-da4e16d6716c27191e694257159c226c6cda5aab.tar.xz nixos-config-da4e16d6716c27191e694257159c226c6cda5aab.zip | |
flake: refactor inputs
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 35 |
1 files changed, 25 insertions, 10 deletions
@@ -63,8 +63,11 @@ omnix = { url = "github:juspay/omnix"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.systems.follows = "systems"; + + inputs = { + nixpkgs.follows = "nixpkgs"; + systems.follows = "systems"; + }; }; spicetify-nix = { @@ -96,8 +99,11 @@ type = "git"; url = "https://github.com/hyprwm/Hyprland"; submodules = true; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.systems.follows = "systems"; + + inputs = { + nixpkgs.follows = "nixpkgs"; + systems.follows = "systems"; + }; }; home-manager = { @@ -117,8 +123,11 @@ hyprland-plugins = { url = "github:hyprwm/hyprland-plugins"; - inputs.hyprland.follows = "hyprland"; - inputs.systems.follows = "systems"; + + inputs = { + hyprland.follows = "hyprland"; + systems.follows = "systems"; + }; }; hyprfocus = { @@ -128,8 +137,11 @@ pywal-nix = { url = "github:Fuwn/pywal-nix"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.systems.follows = "systems"; + + inputs = { + nixpkgs.follows = "nixpkgs"; + systems.follows = "systems"; + }; }; nix-search = { @@ -139,8 +151,11 @@ rui = { url = "github:Fuwn/rui"; - inputs.nixpkgs.follows = "nixpkgs"; - inputs.systems.follows = "systems"; + + inputs = { + nixpkgs.follows = "nixpkgs"; + systems.follows = "systems"; + }; }; tsutsumi = { |