diff options
| author | caley <u65487754@gmail.com> | 2026-06-02 15:31:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-02 15:31:28 +0200 |
| commit | 2b330d276db7f655e85bec19e5102e88f001a1aa (patch) | |
| tree | b8c8159117a65a5dc8093edb42d8b1ab3af38a08 | |
| parent | a2dcad42af6464bbd7b18bca9ed36ab7169c179d (diff) | |
Update flake.nix
| -rw-r--r-- | nixos/flake.nix | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix index 3adcb2b..82530d5 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -3,26 +3,29 @@ inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; - home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; + helium = { + url = "github:AlvaroParker/helium-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; }; - outputs = { self, nixpkgs, home-manager, ... }@inputs: { + outputs = { self, nixpkgs, home-manager, helium, ... }@inputs: { nixosConfigurations = { cat = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ ./configuration.nix - home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; - home-manager.users.silly = import ./cat.nix; + home-manager.extraSpecialArgs = { inherit inputs; }; } ]; }; |
