25 lines
385 B
Nix
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
|
|
];
|
|
}
|