diff options
| author | caley <195605706+cqley@users.noreply.github.com> | 2026-07-21 16:48:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-21 16:48:14 +0200 |
| commit | 77ccf1fd6c07424e200006c2ae5c301fe3ae2081 (patch) | |
| tree | ec277e79e6db3164522dfdfe7abf76f9bc97ec8f | |
| parent | 4277c099c28938687ca1e7ec9dc18a8e6de0811c (diff) | |
Update flake.nix
| -rw-r--r-- | nixos/flake.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix index a103b1d..9ea2a9d 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -52,6 +52,23 @@ } ]; }; + + bed = nixpkgs.lib.nixosSystem { + inherit system; + specialArgs = { inherit pkgs-unstable; }; + modules = [ + ./hosts/bed/configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.extraSpecialArgs = { inherit pkgs-unstable; }; + home-manager.users.cat = { + imports = [ ./hosts/bed/bed.nix ]; + }; + } + ]; + }; }; }; } |
