deprecate stylix, fix minor gripes and bugs
This commit is contained in:
parent
6b492bad2f
commit
fb1ad8d919
42 changed files with 951 additions and 688 deletions
22
home/modules/theme/dconf.nix
Normal file
22
home/modules/theme/dconf.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{ theme, ... }:
|
||||
|
||||
let
|
||||
fonts = theme.fonts;
|
||||
fontSize = toString fonts.sizes.applications;
|
||||
terminalFontSize = toString fonts.sizes.terminal;
|
||||
in
|
||||
{
|
||||
dconf = {
|
||||
enable = true;
|
||||
settings."org/gnome/desktop/interface" = {
|
||||
color-scheme = "prefer-dark";
|
||||
cursor-size = theme.cursor.size;
|
||||
cursor-theme = theme.cursor.name;
|
||||
document-font-name = "${fonts.serif.name} 13";
|
||||
font-name = "${fonts.sansSerif.name} ${fontSize}";
|
||||
gtk-theme = theme.gtk.theme.name;
|
||||
icon-theme = theme.icons.dark;
|
||||
monospace-font-name = "${fonts.monospace.name} ${terminalFontSize}";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue