Skip to content

Commit

Permalink
fix(desktop): added missing xserver + gdm + dconf settings
Browse files Browse the repository at this point in the history
  • Loading branch information
luisnquin committed Mar 6, 2024
1 parent 59a90ae commit 2a8c482
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
18 changes: 18 additions & 0 deletions system/modules/desktop/base.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
programs.dconf.enable = true;

services.xserver = {
enable = true;
autorun = true;

layout = "latam";

displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = true;
};

desktopManager.xterm.enable = true;
};
}
1 change: 1 addition & 0 deletions system/modules/desktop/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
imports = [
./hyprland.nix
./base.nix
];
}

0 comments on commit 2a8c482

Please sign in to comment.