dotfiles/modules/desktop/xorg.nix
2022-04-30 10:21:43 -04:00

35 lines
610 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
];
home-manager.users.${user}.programs.fish.shellAliases = {
pbcopy = "xclip -selection clipboard -in";
pbpaste = "xclip -selection clipboard -out";
};
}