Skip to content

Instantly share code, notes, and snippets.

@noahhaasis
Created May 14, 2021 12:48
Show Gist options
  • Save noahhaasis/4d6b0fddf61ea1a3273f4df3a32ae913 to your computer and use it in GitHub Desktop.
Save noahhaasis/4d6b0fddf61ea1a3273f4df3a32ae913 to your computer and use it in GitHub Desktop.
{ config, lib, pkgs, ...}:
{
services = {
gnome3.gnome-keyring.enable = true;
upower.enable = true;
dbus = {
enable = true;
socketActivated = true;
packages = [ pkgs.gnome3.dconf ];
};
xserver = {
enable = true;
startDbusSession = true;
displayManager.defaultSession = "none+xmonad";
windowManager.xmonad = {
enable = true;
enableContribAndExtras = true;
};
xkbOptions = "caps:ctrl_modifier";
};
};
systemd.services.upower.enable = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment