From c0675d66723f45e3d86c949428f1730dd98dab99 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 30 Jan 2024 16:01:45 -0700 Subject: [PATCH] flake: add shepard --- flake.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/flake.nix b/flake.nix index 1895a5e..3a6eb82 100644 --- a/flake.nix +++ b/flake.nix @@ -82,6 +82,25 @@ ]; }; + "shepard" = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + # Add Disko for disk management + disko.nixosModules.disko + ./disko-config.nix + ./gnome.nix + ./shepard.nix + ./configuration.nix + ./hardware-configuration.nix + home-manager.nixosModules.home-manager + { + home-manager.useGlobalPkgs = true; + home-manager.useUserPackages = true; + home-manager.users.aaronh = import ./home.nix; + } + ]; + }; + "vm" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [