Auto-commit: 2026-01-05 16:28:29

This commit is contained in:
2026-01-05 16:28:29 +00:00
parent 4173078f9e
commit 5ab2d7b6a4

View File

@@ -1,6 +1,9 @@
{ pkgs, ...}: { pkgs, config, lib, ...}:
let
cfg = config.my.desktop;
in
{ {
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
kitty kitty
thunderbird thunderbird
@@ -38,6 +41,9 @@
gsettings-desktop-schemas gsettings-desktop-schemas
gnome-tweaks gnome-tweaks
appimage-run appimage-run
]
++ lib.optionalAttrs cfg.spicetify.enable [
spotify
]; ];
programs.seahorse.enable = true; programs.seahorse.enable = true;
programs.streamcontroller.enable = true; programs.streamcontroller.enable = true;
@@ -46,4 +52,5 @@
binfmt = true; binfmt = true;
}; };
programs.yubikey-manager.enable = true; programs.yubikey-manager.enable = true;
};
} }