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

22 lines
307 B
Nix

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