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
-4
View File
@@ -31,10 +31,6 @@
kdePackages.kwallet
kdePackages.kwalletmanager
papirus-icon-theme
# Common utils
thunar
thunar-volman
];
hardware.steam-hardware.enable = true;
+1
View File
@@ -8,6 +8,7 @@
./base.nix
./flatpak.nix
./fonts.nix
./packages.nix
./sddm.nix
];
services.displayManager.defaultSession = "hyprland";
+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
];
}