mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
30 lines
448 B
Nix
30 lines
448 B
Nix
{ pkgs, user, gui, gtkTheme, ... }: {
|
|
|
|
# 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 = gtkTheme;
|
|
|
|
};
|
|
};
|
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs;
|
|
[
|
|
xclip # Clipboard
|
|
];
|
|
|
|
}
|
|
|