modules.system.gui: fix

This commit is contained in:
2025-11-29 06:27:24 +08:00
parent 16d882b022
commit d5ece0aec5

View File

@@ -68,10 +68,16 @@ inputs:
programs.niri.enable = true;
nixos.user.sharedModules = [(hmInputs:
{
config.programs.dankMaterialShell = { enable = true; niri.enableKeybinds = true; systemd.enable = true; };
config.programs.dankMaterialShell =
{
enable = true;
niri.enableKeybinds = true;
systemd = { enable = true; restartIfChanged = true; };
};
})];
# niri module will auto enable this, disable it to avoid conflict with system ssh-agent
services.gnome.gcr-ssh-agent.enable = false;
systemd.user.services.niri-flake-polkit.enable = false;
})
];
}