34 lines
547 B
Nix
34 lines
547 B
Nix
{ config, pkgs, ...}:
|
|
|
|
{
|
|
security.pam.services.gdm.enableGnomeKeyring = true;
|
|
# Enable the X11 windowing system.
|
|
services.xserver = {
|
|
enable = true;
|
|
layout = "gb";
|
|
|
|
libinput = {
|
|
enable = true;
|
|
mouse = {
|
|
accelProfile = "flat";
|
|
accelSpeed = "1";
|
|
};
|
|
};
|
|
|
|
displayManager = {
|
|
gdm.enable = true;
|
|
};
|
|
|
|
windowManager.i3 = {
|
|
enable = true;
|
|
package = pkgs.i3-gaps;
|
|
extraPackages = with pkgs; [
|
|
flameshot
|
|
i3lock
|
|
i3utils
|
|
];
|
|
};
|
|
};
|
|
}
|
|
|