mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 02:02:56 +00:00
30 lines
438 B
Nix
30 lines
438 B
Nix
{ pkgs, gui, ... }: {
|
|
|
|
# Enable the X11 windowing system.
|
|
services.xserver = {
|
|
enable = gui;
|
|
|
|
# Enable touchpad support
|
|
libinput.enable = true;
|
|
|
|
# Login screen
|
|
displayManager = {
|
|
lightdm = {
|
|
enable = gui;
|
|
|
|
# Make the login screen dark
|
|
greeters.gtk.theme.name = "Adwaita-dark";
|
|
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
xclip # Clipboard
|
|
];
|
|
|
|
}
|
|
|