summaryrefslogtreecommitdiff
path: root/modules/hosts/libreX60
diff options
context:
space:
mode:
authorTim Keller <tjkeller.xyz>2025-01-18 18:45:57 -0600
committerTim Keller <tjkeller.xyz>2025-01-18 18:45:57 -0600
commit67adf5929167a527a172ec5c85ccd335fc54cc68 (patch)
treebf71878f47814d4794e8dfa424994bc750482e1c /modules/hosts/libreX60
parent3ec73bd138b551eedffcf0a059020174aac1b11d (diff)
downloadnixos-master.tar.xz
nixos-master.zip
add libreX60 config. remove alacritty. add options for fontHEADmaster
Diffstat (limited to 'modules/hosts/libreX60')
-rw-r--r--modules/hosts/libreX60/configuration.nix14
-rw-r--r--modules/hosts/libreX60/home.nix8
2 files changed, 22 insertions, 0 deletions
diff --git a/modules/hosts/libreX60/configuration.nix b/modules/hosts/libreX60/configuration.nix
new file mode 100644
index 0000000..942793d
--- /dev/null
+++ b/modules/hosts/libreX60/configuration.nix
@@ -0,0 +1,14 @@
+{ config, lib, pkgs, ... }: {
+ imports = [ ./hardware-configuration.nix ];
+ networking.hostName = "libreX60";
+
+ # Enable extra software pkgs
+ software.desktop = {
+ office.enable = true;
+ };
+
+ # Enable network drives
+ nas.enable = true;
+
+ system.stateVersion = "24.11";
+}
diff --git a/modules/hosts/libreX60/home.nix b/modules/hosts/libreX60/home.nix
new file mode 100644
index 0000000..453bfd6
--- /dev/null
+++ b/modules/hosts/libreX60/home.nix
@@ -0,0 +1,8 @@
+{ ... }: {
+ imports = [ ../../home ];
+
+ theme.mint.theme.color = "Dark-Red";
+ theme.mint.icons.color = "Red";
+ theme.font.sansSerif = "Tamzen";
+ theme.font.monospace = "Tamzen";
+}