Files
nix/desktop/packages.nix
T
2026-05-08 16:39:54 -05:00

25 lines
385 B
Nix

#
# Basic desktop stuff
#
{ config, lib, pkgs, ... }:
{
# Hardware
hardware.steam-hardware.enable = true;
# Basic system utilities
programs.thunar.enable = true;
programs.thunar.plugins = with pkgs; [
thunar-volman
];
# Common utilities
programs.thunderbird.enable = true;
environment.systemPackages = with pkgs; [
keepassxc
element-desktop
nextcloud-client
];
}