From 297c95f5c5d72dc5c2bea34cb018aed010c699f5 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Tue, 7 Jan 2025 14:28:09 +0000 Subject: [PATCH] add lemp13 to flake.nix --- flake.nix | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/flake.nix b/flake.nix index 73744a9..12b980d 100644 --- a/flake.nix +++ b/flake.nix @@ -92,6 +92,34 @@ ]; }; + "lemp13" = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = { inherit inputs; }; + modules = [ + # Add Disko for disk management + disko.nixosModules.disko + ./disko-config.nix +# ./gnome.nix + ./lemp13.nix + ./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.system76 + #nixos-hardware.nixosModules.system76-galp5-1650 + { + nix.settings = { + substituters = [ "https://cosmic.cachix.org/" ]; + trusted-public-keys = [ "cosmic.cachix.org-1:Dya9IyXD4xdBehWjrkPv6rtxpmMdRel02smYzA85dPE=" ]; + }; + } + nixos-cosmic.nixosModules.default + ]; + }; + "drack" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; modules = [