From 9432c0d987089fe654b12a02c4d4e36d5552701c Mon Sep 17 00:00:00 2001 From: caley Date: Thu, 11 Jun 2026 22:51:02 +0200 Subject: Update flake.nix --- nixos/flake.nix | 32 ++++++++++++++++++++++++++++---- 1 file 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 + ]; + }; } ]; }; -- cgit v1.3.1