Doctoring things up

This commit is contained in:
2026-05-08 16:39:54 -05:00
parent de8fe9dc11
commit 35fccb631c
4 changed files with 27 additions and 4 deletions
+24
View File
@@ -0,0 +1,24 @@
#
# 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
];
}