31 lines
420 B
Nix
31 lines
420 B
Nix
#
|
|
# Basic desktop stuff
|
|
#
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Hardware
|
|
hardware.steam-hardware.enable = true;
|
|
|
|
# Common utilities
|
|
programs.thunderbird.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
libnotify
|
|
|
|
kdePackages.dolphin
|
|
keepassxc
|
|
element-desktop
|
|
gimp-with-plugins
|
|
inkscape
|
|
libreoffice-qt-fresh
|
|
nextcloud-client
|
|
vesktop
|
|
|
|
bambu-studio
|
|
|
|
dolphin-emu
|
|
dolphin-emu-primehack
|
|
];
|
|
}
|