This commit is contained in:
gwg313 2025-01-15 13:28:20 -05:00
parent badcf3aa40
commit 42a0bf27e0
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
24 changed files with 2870 additions and 392 deletions

View file

@ -3,10 +3,11 @@
lib,
pkgs,
...
}: {
}:
{
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
hardware.alsa.enablePersistence = true;
# hardware.alsa.enablePersistence = true;
security.rtkit.enable = true;
services.pipewire = {
enable = true;

View file

@ -1,21 +0,0 @@
{
pkgs,
config,
lib,
...
}: {
options = {
thunar.enable = lib.mkEnableOption "Enables thunar and its plugins";
};
config = lib.mkIf config.thunar.enable {
programs.thunar = {
enable = true;
plugins = with pkgs.xfce; [
thunar-archive-plugin
thunar-volman
];
};
services.gvfs.enable = true; # Mount, trash, and other functionalities
services.tumbler.enable = true; # Thumbnail support for images
};
}