Files
nix/desktop/base.nix
T
2026-05-03 01:36:46 -05:00

33 lines
530 B
Nix

#
# Basic desktop stuff
#
{ config, lib, pkgs, ... }:
{
programs.dconf = {
enable = true;
profiles.user.databases = [
{
settings."org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-theme = "breeze_cursors";
cursor-size = 24;
gtk-theme = "Breeze";
icon-theme = "Papirus";
};
}
];
};
environment.systemPackages = with pkgs; [
# Themes
kdePackages.breeze
kdePackages.breeze-gtk
papirus-icon-theme
# Common utils
xfce.thunar
xfce.thunar-volman
];
}