diff options
author | Tim Keller <tjk@tjkeller.xyz> | 2025-08-30 12:55:23 -0500 |
---|---|---|
committer | Tim Keller <tjk@tjkeller.xyz> | 2025-08-30 12:55:23 -0500 |
commit | d3643a962b42440f706c9171a2644c41fcd2be8e (patch) | |
tree | 7dc276763b5cfcd9510b26dfa63f242110305887 /hosts/libreX60/configuration.nix | |
parent | 9da942ba47d34210e86a1a709e802eda5c3b95db (diff) | |
download | nixos-d3643a962b42440f706c9171a2644c41fcd2be8e.tar.xz nixos-d3643a962b42440f706c9171a2644c41fcd2be8e.zip |
only allow specified unfree software on hosts that use unfree and update all active hosts to work with new config
Diffstat (limited to 'hosts/libreX60/configuration.nix')
-rw-r--r-- | hosts/libreX60/configuration.nix | 26 |
1 files changed, 24 insertions, 2 deletions
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"; } |