From d52197fa8b6946302558ab0234485121ac134679 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 13 Feb 2024 15:39:39 -0700 Subject: [PATCH] flake: add vetra and reorder by desktop, laptop and arch --- flake.nix | 56 +++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 36 insertions(+), 20 deletions(-) diff --git a/flake.nix b/flake.nix index 09bca9a..a5a99d0 100644 --- a/flake.nix +++ b/flake.nix @@ -27,6 +27,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; + } + ]; + }; + "garrus" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; modules = [ @@ -45,7 +64,23 @@ } ]; }; - + + "vetra" = nixpkgs.lib.nixosSystem { + system = "aarch64-linux"; + modules = [ + ./vetra.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; + } + nixos-hardware.nixosModules.raspberry-pi-4 + ]; + }; + "jaal" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; modules = [ @@ -66,25 +101,6 @@ ]; }; - "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 = [