organization on joe, todo gpdpocket3 (#1)

This commit is contained in:
Joshua Bell 2024-04-01 08:34:46 -07:00 committed by GitHub
parent 92e0a90f23
commit aa9b15702a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 219 additions and 148 deletions

View file

@ -0,0 +1,18 @@
{ pkgs, ... }:
{
services.xserver.enable = true;
services.xserver.displayManager.gdm = {
enable = true;
autoSuspend = false;
wayland = true;
};
services.xserver.desktopManager.gnome.enable = true;
services.gnome.core-utilities.enable = false;
environment.systemPackages = with pkgs; [
gnome.dconf-editor
gnomeExtensions.workspace-switch-wraparound
# wayland clipboard in terminal
wl-clipboard
];
}