Files
nix/desktop/base.nix
T
2026-05-03 01:18:32 -05:00

17 lines
200 B
Nix

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