From f5b0563954a91f653a49cff4a324e587e36676a1 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 15:30:52 -0600 Subject: [PATCH 1/5] enable GNOME for garrus --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b61b990..f1b6cf8 100644 --- a/flake.nix +++ b/flake.nix @@ -72,7 +72,7 @@ # Add Disko for disk management disko.nixosModules.disko ./disko-config.nix -# ./gnome.nix + ./gnome.nix ./configuration.nix home-manager.nixosModules.home-manager { From 2fad31914d310d30466c0b5d17068d4ed33da821 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 15:31:48 -0600 Subject: [PATCH 2/5] remove COSMIC for garrus --- hosts/x86_64/garrus/configuration.nix | 4 ---- 1 file changed, 4 deletions(-) diff --git a/hosts/x86_64/garrus/configuration.nix b/hosts/x86_64/garrus/configuration.nix index 6585d4f..ca99ef6 100644 --- a/hosts/x86_64/garrus/configuration.nix +++ b/hosts/x86_64/garrus/configuration.nix @@ -18,8 +18,4 @@ stellarshot ]; - # COSMIC - services.desktopManager.cosmic.enable = true; - services.displayManager.cosmic-greeter.enable = true; - } From c1fbece61d3b2ca859d8ccf2f2b0c2672ab87bdc Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 15:34:48 -0600 Subject: [PATCH 3/5] Add pixel-slate --- hosts/x86_64/pixel-slate.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 hosts/x86_64/pixel-slate.nix diff --git a/hosts/x86_64/pixel-slate.nix b/hosts/x86_64/pixel-slate.nix new file mode 100644 index 0000000..568162b --- /dev/null +++ b/hosts/x86_64/pixel-slate.nix @@ -0,0 +1,10 @@ +{ config, pkgs, ... }: + +{ + # Name your host machine + networking.hostName = "pixel-slate"; + + # Enable Lomiri since this is a tablet + services.desktopManager.lomiri.enable = true; + services.displayManager.defaultSession = "lomiri"; +} \ No newline at end of file From 11719444b20034168e6339548c08c4d7dc5cd839 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 15:37:00 -0600 Subject: [PATCH 4/5] add pixel-slate --- flake.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index f1b6cf8..2b4646c 100644 --- a/flake.nix +++ b/flake.nix @@ -91,6 +91,17 @@ ]; }; + "pixel-slate" = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + modules = [ + # Add Disko for disk management + disko.nixosModules.disko + ./disko-config.nix + ./pixel-slate.nix + ./configuration.nix + ]; + }; + "drack" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; modules = [ @@ -100,7 +111,6 @@ ./gnome.nix ./drack.nix ./configuration.nix - ./hardware-configuration.nix home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; From 886dd21fdd33b1c1ebb33671164a88a5ef49cd61 Mon Sep 17 00:00:00 2001 From: Aaron Honeycutt Date: Wed, 12 Mar 2025 16:06:36 -0600 Subject: [PATCH 5/5] add missing specialArgs = { inherit inputs; }; --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index 2b4646c..5e8899b 100644 --- a/flake.nix +++ b/flake.nix @@ -24,6 +24,7 @@ nixosConfigurations = { "nixos" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ # Add Disko for disk management disko.nixosModules.disko @@ -36,6 +37,7 @@ "shepard" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ # Add Disko for disk management disko.nixosModules.disko @@ -55,6 +57,7 @@ "edi" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ # Add Disko for disk management disko.nixosModules.disko @@ -93,6 +96,7 @@ "pixel-slate" = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; + specialArgs = { inherit inputs; }; modules = [ # Add Disko for disk management disko.nixosModules.disko @@ -104,6 +108,7 @@ "drack" = nixpkgs.lib.nixosSystem { system = "aarch64-linux"; + specialArgs = { inherit inputs; }; modules = [ # Add Disko for disk management disko.nixosModules.disko