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/X230/configuration.nix | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) (limited to 'hosts/X230/configuration.nix') diff --git a/hosts/X230/configuration.nix b/hosts/X230/configuration.nix index accbb1c..635d8b0 100644 --- a/hosts/X230/configuration.nix +++ b/hosts/X230/configuration.nix @@ -1,9 +1,4 @@ { config, lib, pkgs, ... }: { - imports = [ - ./hardware-configuration.nix - ../../nixos/archetypes/tjkeller - ]; - # Setup bootloader boot._loader.enable = true; @@ -26,5 +21,29 @@ }; }; + # Configure home + home-manager.users.timmy = { + gtk._mintTheme = { + dark = true; + color = "Teal"; + icons.color = "Teal"; + }; + 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.05"; } -- cgit v1.2.3