17 lines
200 B
Nix
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
|
|
];
|
|
}
|