Files
garandos/modules/core/packages/programs.nix
T
GarandPLG a5672030ed Disable Solaar and simplify Logitech wireless
Set `solaar.enable` to false.
Replace the `logitech.wireless` attribute set with a single
`enable = false` entry, removing the now‑unused `enableGraphical`
option.
2026-08-23 11:32:04 +02:00

38 lines
534 B
Nix

{shell, ...}: {
programs = {
nano.enable = true;
hyprland = {
enable = true;
withUWSM = false;
};
fish.enable =
if shell == "fish"
then true
else false;
dconf.enable = true;
seahorse.enable = true;
fuse.userAllowOther = true;
mtr.enable = true;
gnupg.agent = {
enable = true;
enableSSHSupport = true;
};
solaar.enable = false;
nix-ld = {
enable = true;
# libraries = with pkgs; [
# biome
# ];
};
};
}