mirror of
https://github.com/RGBCube/ncc
synced 2025-07-30 11:37:44 +00:00
Minimal borders for altk
This commit is contained in:
parent
82941513d7
commit
26e03c1c46
1 changed files with 21 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, ... }: with lib; merge
|
{ themes, config, lib, pkgs, ... }: with lib; merge
|
||||||
|
|
||||||
(systemConfiguration {
|
(systemConfiguration {
|
||||||
system.stateVersion = "24.11";
|
system.stateVersion = "24.11";
|
||||||
|
@ -16,6 +16,26 @@
|
||||||
hashedPasswordFile = config.secrets.saidPassword.path;
|
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 {
|
(homeConfiguration {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue