From 67adf5929167a527a172ec5c85ccd335fc54cc68 Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sat, 18 Jan 2025 18:45:57 -0600 Subject: add libreX60 config. remove alacritty. add options for font --- modules/hosts/libreX60/configuration.nix | 14 ++++++++++++++ modules/hosts/libreX60/home.nix | 8 ++++++++ 2 files changed, 22 insertions(+) create mode 100644 modules/hosts/libreX60/configuration.nix create mode 100644 modules/hosts/libreX60/home.nix (limited to 'modules/hosts/libreX60') 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"; +} -- cgit v1.2.3