1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-29 19:17:45 +00:00

Minimal borders for altk

This commit is contained in:
RGBCube 2024-06-26 18:15:54 +03:00
parent 82941513d7
commit 26e03c1c46
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -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 {