diff --git a/flake.nix b/flake.nix index 1e6978c..dfad36a 100644 --- a/flake.nix +++ b/flake.nix @@ -24,7 +24,24 @@ in rec { laptop = false; }; }; - modules = [ + modules = [ + ./nixos/default.nix + home-manager.nixosModule + ]; + }; + lucy = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { + inherit stateVersion; + hostname = "lucy"; + username = "ephase"; + hostConfig = { + gaming = false; + desktop = true; + laptop = true; + }; + }; + modules = [ ./nixos/default.nix home-manager.nixosModule ];