diff options
| author | caley <u65487754@gmail.com> | 2026-06-02 15:40:16 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-02 15:40:16 +0200 |
| commit | 23c2a9616189f6baef9533999b89079e0f7dc8f0 (patch) | |
| tree | e90da65d82c66ab0bbcc92c67c1a80caf444edc4 | |
| parent | cbb5597ee60781de650f3bf9c91c16a41ddf4e2c (diff) | |
Update flake.nix
| -rw-r--r-- | nixos/flake.nix | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix index 82530d5..f5e4b8e 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -3,29 +3,25 @@ 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, helium, ... }@inputs: { + outputs = { self, nixpkgs, home-manager, ... }@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; }; } ]; }; |
