22 lines
307 B
Nix
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
|
|
];
|
|
}
|