Set `solaar.enable` to false. Replace the `logitech.wireless` attribute set with a single `enable = false` entry, removing the now‑unused `enableGraphical` option.
38 lines
534 B
Nix
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
|
|
# ];
|
|
};
|
|
};
|
|
}
|