diff --git a/hosts/ace/default.nix b/hosts/ace/default.nix index 6c06ee5..fce23af 100644 --- a/hosts/ace/default.nix +++ b/hosts/ace/default.nix @@ -1,4 +1,11 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { imports = [ ./hardware-configuration.nix # ../disko/mmcblk.nix @@ -18,6 +25,7 @@ tlp.enable = false; gnome-calendar.enable = false; }; + primary.enable = false; wm = { sway.enable = true; kde.enable = false; diff --git a/hosts/book/default.nix b/hosts/book/default.nix index 9821ac4..c660ecd 100644 --- a/hosts/book/default.nix +++ b/hosts/book/default.nix @@ -1,4 +1,11 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { imports = [ inputs.nixos-hardware.nixosModules.google-pixelbook ./hardware-configuration.nix @@ -20,6 +27,7 @@ tlp.enable = true; gnome-calendar.enable = true; }; + primary.enable = true; wm = { sway.enable = true; kde.enable = false; diff --git a/hosts/dragon/default.nix b/hosts/dragon/default.nix index d6a92fe..26bdaee 100644 --- a/hosts/dragon/default.nix +++ b/hosts/dragon/default.nix @@ -1,4 +1,9 @@ -{ inputs, config, pkgs, ... }: { +{ + inputs, + config, + pkgs, + ... +}: { imports = [ ./hardware-configuration.nix inputs.nixos-hardware.nixosModules.common-cpu-intel @@ -21,6 +26,7 @@ tlp.enable = true; gnome-calendar.enable = false; }; + primary.enable = false; wm = { sway.enable = true; kde.enable = false; diff --git a/hosts/eve/default.nix b/hosts/eve/default.nix index 2f61350..aca66cd 100644 --- a/hosts/eve/default.nix +++ b/hosts/eve/default.nix @@ -1,4 +1,11 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { imports = [ inputs.nixos-hardware.nixosModules.google-pixelbook ./hardware-configuration.nix @@ -19,6 +26,7 @@ tlp.enable = true; gnome-calendar.enable = false; }; + primary.enable = false; wm = { sway.enable = true; kde.enable = false; diff --git a/hosts/loki/default.nix b/hosts/loki/default.nix index ebc2127..f5be54b 100644 --- a/hosts/loki/default.nix +++ b/hosts/loki/default.nix @@ -1,4 +1,11 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { imports = [ inputs.nixos-hardware.nixosModules.dell-xps-13-9310 ./hardware-configuration.nix @@ -6,7 +13,7 @@ ../workstation ]; networking.hostName = "loki"; - boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; + boot.binfmt.emulatedSystems = ["aarch64-linux"]; variables.address = "100.72.0.1"; variables.swayScale = "1.1"; @@ -22,6 +29,7 @@ auto-cpufreq.enable = true; gnome-calendar.enable = true; }; + primary.enable = false; wm = { sway.enable = true; kde.enable = false; diff --git a/hosts/smaug/default.nix b/hosts/smaug/default.nix index 053ad48..90ac422 100644 --- a/hosts/smaug/default.nix +++ b/hosts/smaug/default.nix @@ -1,4 +1,11 @@ -{ inputs, outputs, lib, config, pkgs, ... }: { +{ + inputs, + outputs, + lib, + config, + pkgs, + ... +}: { imports = [ inputs.nixos-hardware.nixosModules.lenovo-thinkpad-x260 inputs.nixos-hardware.nixosModules.common-pc-laptop @@ -23,6 +30,7 @@ auto-cpufreq.enable = true; gnome-calendar.enable = true; }; + primary.enable = false; wm = { sway.enable = true; kde.enable = false;