split desktop directory
This commit is contained in:
parent
a975e7fb14
commit
98432fd3a1
8 changed files with 265 additions and 220 deletions
25
nix-os/displayManagers/gdm.nix
Normal file
25
nix-os/displayManagers/gdm.nix
Normal 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
|
||||
];
|
||||
};
|
||||
}
|
7
nix-os/displayManagers/sddm.nix
Normal file
7
nix-os/displayManagers/sddm.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ ... }:
|
||||
|
||||
{
|
||||
config = {
|
||||
services.xserver.displayManager.sddm.enable = true;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue