diff options
Diffstat (limited to 'hosts/X230')
-rw-r--r-- | hosts/X230/configuration.nix | 29 | ||||
-rw-r--r-- | hosts/X230/home.nix | 18 |
2 files changed, 24 insertions, 23 deletions
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"; } diff --git a/hosts/X230/home.nix b/hosts/X230/home.nix deleted file mode 100644 index 03b559d..0000000 --- a/hosts/X230/home.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ ... }: { - imports = [ ../../home ]; - - theme = { - mint.theme.color = "Dark-Teal"; - mint.icons.color = "Teal"; - font = { - monospace = "TamzenForPowerline"; - gtk.name = "monospace"; - gtk.size = 8; - }; - cursor.size = 24; - st = { - enable = true; - font = "TamzenForPowerline:pixelsize=14"; - }; - }; -} |