nixos-configuration/nix-os/displayManagers/gdm.nix
Wroclaw 8f15bf0e0c dconf: create generic module and use it
no more cringe function calling, yay
2024-05-29 04:48:25 +02:00

26 lines
526 B
Nix

{pkgs, ... }:
{
imports = [
../dconf-common.nix
];
config = {
services.xserver.displayManager.gdm = {
enable = true;
wayland = false;
autoSuspend = false;
};
proot.dconf.profiles.gdm.rulesToApply = [
"org/gnome/desktop/interface"
"org/gnome/desktop/peripherals/mouse"
"org/gnome/desktop/sound"
"org/gnome/settings-daemon/plugins/power"
"org/gnome/shell/keybindings"
];
environment.systemPackages = with pkgs; [
google-cursor
];
};
}