split desktop directory

This commit is contained in:
Wroclaw 2024-03-13 10:59:04 +01:00
parent a975e7fb14
commit 98432fd3a1
8 changed files with 265 additions and 220 deletions

View file

@ -0,0 +1,25 @@
{pkgs, ... } @ moduleArgs:
{
config = {
services.xserver.displayManager.gdm = {
enable = true;
wayland = false;
autoSuspend = false;
};
programs.dconf.profiles.gdm.databases = [{
settings = import ../dconf-common.nix moduleArgs [
"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
];
};
}

View file

@ -0,0 +1,7 @@
{ ... }:
{
config = {
services.xserver.displayManager.sddm.enable = true;
};
}