From d3643a962b42440f706c9171a2644c41fcd2be8e Mon Sep 17 00:00:00 2001 From: Tim Keller Date: Sat, 30 Aug 2025 12:55:23 -0500 Subject: only allow specified unfree software on hosts that use unfree and update all active hosts to work with new config --- hosts/libreX60/configuration.nix | 26 ++++++++++++++++++++++++-- hosts/libreX60/home.nix | 18 ------------------ 2 files changed, 24 insertions(+), 20 deletions(-) delete mode 100644 hosts/libreX60/home.nix (limited to 'hosts/libreX60') diff --git a/hosts/libreX60/configuration.nix b/hosts/libreX60/configuration.nix index 9c83a42..4f20501 100644 --- a/hosts/libreX60/configuration.nix +++ b/hosts/libreX60/configuration.nix @@ -1,8 +1,6 @@ { config, lib, pkgs, ... }: { imports = [ - ./hardware-configuration.nix ./powertop-auto-tune.nix - ../../nixos/archetypes/tjkeller # Uncomment this module and reboot to enable bios flashing #./bios-flashing.nix ]; @@ -21,5 +19,29 @@ # i915 Gpu requires intel driver services.xserver.videoDrivers = [ "intel" ]; + # Configure home + home-manager.users.timmy = { + gtk._mintTheme = { + dark = true; + color = "Red"; + icons.color = "Red"; + }; + fonts.fontconfig.defaultFonts.monospace = [ "TamzenForPowerline" ]; + gtk = { + font.name = "monospace"; + font.size = 8; + cursorTheme.size = 24; + }; + programs._st = { + enable = true; + font = { + name = "TamzenForPowerline"; + attrs = { + pixelsize = 14; + }; + }; + }; + }; + system.stateVersion = "24.11"; } diff --git a/hosts/libreX60/home.nix b/hosts/libreX60/home.nix deleted file mode 100644 index f5957d6..0000000 --- a/hosts/libreX60/home.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ ... }: { - imports = [ ../../home ]; - - theme = { - mint.theme.color = "Dark-Red"; - mint.icons.color = "Red"; - font = { - monospace = "TamzenForPowerline"; - gtk.name = "monospace"; - gtk.size = 8; - }; - cursor.size = 24; - st = { - enable = true; - font = "TamzenForPowerline:pixelsize=14"; - }; - }; -} -- cgit v1.2.3