diff options
-rw-r--r-- | modules/hosts/X230/configuration.nix | 14 | ||||
-rw-r--r-- | modules/hosts/X230/home.nix | 14 |
2 files changed, 28 insertions, 0 deletions
diff --git a/modules/hosts/X230/configuration.nix b/modules/hosts/X230/configuration.nix new file mode 100644 index 0000000..385b383 --- /dev/null +++ b/modules/hosts/X230/configuration.nix @@ -0,0 +1,14 @@ +{ config, lib, pkgs, ... }: { + imports = [ + ./hardware-configuration.nix + ]; + bootloader.mode = "efi"; + + # Enable extra software pkgs + software.desktop = { + crypto.enable = true; + office.enable = true; + }; + + system.stateVersion = "24.05"; +} diff --git a/modules/hosts/X230/home.nix b/modules/hosts/X230/home.nix new file mode 100644 index 0000000..871d997 --- /dev/null +++ b/modules/hosts/X230/home.nix @@ -0,0 +1,14 @@ +{ ... }: { + imports = [ ../../home ]; + + theme = { + mint.theme.color = "Dark-Teal"; + mint.icons.color = "Teal"; + font = { + monospace = "Tamzen"; + gtk.name = "monospace"; + gtk.size = 8; + }; + cursor.size = 24; + }; +} |