Files
nix/desktop/base.nix
T
2026-05-03 01:29:12 -05:00

18 lines
233 B
Nix

#
# Basic desktop stuff
#
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
# Themes
adwaita-icon-theme
kdePackages.breeze
papirus-icon-theme
# Common utils
xfce.thunar
xfce.thunar-volman
];
}