diff options
Diffstat (limited to 'hosts/libreX60')
-rw-r--r-- | hosts/libreX60/configuration.nix | 26 | ||||
-rw-r--r-- | hosts/libreX60/home.nix | 18 |
2 files changed, 24 insertions, 20 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"; } 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"; - }; - }; -} |