fixes desktop

This commit is contained in:
Dennis Schoepf 2026-03-04 20:33:03 +01:00
parent 566cf638f6
commit f5111eeadf

View file

@ -38,9 +38,20 @@
};
environment.systemPackages = with pkgs; [
xwayland-satellite
bibata-cursors
gimp
darktable
reversal-icon-theme
nerd-fonts.victor-mono
adwaita-fonts
bodoni-moda
nautilus
nautilus-open-any-terminal
noto-fonts-color-emoji
adw-gtk3
kdePackages.qt6ct
usbutils
];
home-manager.sharedModules = [
@ -52,6 +63,16 @@
{ pkgs, config, ... }:
{
services.polkit-gnome.enable = true;
services.mpris-proxy.enable = true;
services.udiskie = {
enable = true;
settings = {
program_options = {
file_manager = "${pkgs.nautilus}/bin/nautilus";
};
};
};
xdg.desktopEntries = {
screenshot = {
type = "Application";
@ -97,6 +118,43 @@
};
};
fonts.fontconfig = {
enable = true;
antialiasing = true;
defaultFonts = {
monospace = [ "VictorMono Nerd Font" ];
sansSerif = [
"Adwaita Sans"
"Noto Color Emoji"
];
serif = [ "Bodoni Moda" ];
};
};
gtk = {
enable = true;
colorScheme = "dark";
theme.name = "adw-gtk3";
font = {
package = pkgs.adwaita-fonts;
name = "Adwaita Sans";
size = 11;
};
iconTheme = {
package = pkgs.reversal-icon-theme;
name = "Reversal-dark";
};
gtk4.iconTheme = {
package = pkgs.reversal-icon-theme;
name = "Reversal-dark";
};
cursorTheme = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Ice";
size = 24;
};
};
imports = [
inputs.dms.homeModules.dank-material-shell
];