From 91db99454a78f2184af6c8a584d6abd22d90b118 Mon Sep 17 00:00:00 2001 From: stitchy Date: Sun, 25 Feb 2024 19:55:49 -0800 Subject: [PATCH] flake stuff --- flake.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/flake.nix b/flake.nix index 8fc984d..d9e2e12 100644 --- a/flake.nix +++ b/flake.nix @@ -12,6 +12,24 @@ } : { nixosConfigurations = { + malachite = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + + ./configuration.nix + ./hosts/malachite/default.nix + ./users/stitchynyan/default.nix + + home-manager.nixosModules.home-manager + { + home-manager.extraSpecialArgs = {inherit inputs;}; + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.stitchynyan = import ./users/stitchynyan/home.nix; + } + ]; + }; lappy = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; };