wip: dnsc-machine config

This commit is contained in:
Dennis Schoepf 2025-11-21 15:05:33 +01:00
parent baf0df6e0f
commit c086302598
4 changed files with 52 additions and 14 deletions

View file

@ -21,6 +21,10 @@
zoxide
swaybg
xwayland-satellite
nerd-fonts.victor-mono
work-sans
bodoni-moda
reversal-icon-theme
];
imports = [
@ -34,4 +38,33 @@
];
programs.home-manager.enable = true;
# Appearance
fonts.fontconfig.enable = {
antialiasing = true;
defaultFonts = {
monospace = "VictorMono Nerd Font";
sansSerif = "Work Sans";
serif = "Bodoni";
};
};
gtk = {
enable = true;
colorScheme = "dark";
font = {
package = pkgs.work-sans;
name = "Work Sans";
size = 10;
};
iconTheme = {
package = pkgs.reversal-icon-theme;
name = "Reversal";
};
cursorTheme = {
package = pkgs.bibata-cursors;
name = "Bibata Ice";
size = 24;
};
};
}