33 lines
558 B
Nix
33 lines
558 B
Nix
#
|
|
# Basic desktop stuff
|
|
#
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
programs.dconf = {
|
|
enable = true;
|
|
profiles.user.databases = [
|
|
{
|
|
settings."org/gnome/desktop/interface" = with lib.gvariant; {
|
|
color-scheme = "prefer-dark";
|
|
cursor-theme = "breeze_cursors";
|
|
cursor-size = mkUint32 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
|
|
];
|
|
}
|