diff options
| author | caley <u65487754@gmail.com> | 2026-06-11 22:51:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-11 22:51:02 +0200 |
| commit | 9432c0d987089fe654b12a02c4d4e36d5552701c (patch) | |
| tree | 6dff9bbdddbbc5655cfd601b82f0c1d6cad43c7b /nixos/flake.nix | |
| parent | fe5236906211952da000a0c20716bb699aa2564f (diff) | |
Update flake.nix
Diffstat (limited to 'nixos/flake.nix')
| -rw-r--r-- | nixos/flake.nix | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/nixos/flake.nix b/nixos/flake.nix index 4626c89..c1fda9e 100644 --- a/nixos/flake.nix +++ b/nixos/flake.nix @@ -12,16 +12,40 @@ outputs = { self, nixpkgs, home-manager, ... }@inputs: { nixosConfigurations = { - litterbox = nixpkgs.lib.nixosSystem { + box = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ - ./configuration.nix - + ./common.nix + ./hosts/box home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; - home-manager.users.cat = import ./mngr.nix; + home-manager.users.cat = { + imports = [ + ./mngr.nix + ./hypr.nix + ./shell.nix + ]; + }; + } + ]; + }; + + bin = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + ./common.nix + ./hosts/bin + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.cat = { + imports = [ + ./mngr.nix + ]; + }; } ]; }; |
