diff --git a/hosts/altk/default.nix b/hosts/altk/default.nix index f7fd2c6..2915a4b 100644 --- a/hosts/altk/default.nix +++ b/hosts/altk/default.nix @@ -1,4 +1,4 @@ -{ config, lib, ... }: with lib; merge +{ themes, config, lib, pkgs, ... }: with lib; merge (systemConfiguration { system.stateVersion = "24.11"; @@ -16,6 +16,26 @@ hashedPasswordFile = config.secrets.saidPassword.path; }); }; + + theme = themes.custom (themes.raw.gruvbox-dark-hard // { + cornerRadius = 0; + borderWidth = 1; + + margin = 0; + padding = 6; + + font.size.normal = 12; + font.size.big = 16; + + font.sans.name = "Lexend"; + font.sans.package = pkgs.lexend; + + font.mono.name = "JetBrainsMono Nerd Font"; + font.mono.package = (pkgs.nerdfonts.override { fonts = [ "JetBrainsMono" ]; }); + + icons.name = "Gruvbox-Plus-Dark"; + icons.package = pkgs.gruvbox-plus-icons; + }); }) (homeConfiguration {