dotfiles/modules/desktop/xorg.nix

40 lines
781 B
Nix
Raw Normal View History

{ config, pkgs, lib, ... }: {
2022-04-29 01:56:21 +00:00
config = lib.mkIf config.gui.enable {
2022-04-29 01:56:21 +00:00
2022-04-30 16:32:00 +00:00
# Enable the X11 windowing system.
services.xserver = {
enable = config.gui.enable;
2022-04-29 01:56:21 +00:00
2022-04-30 16:32:00 +00:00
# Enable touchpad support
libinput.enable = true;
2022-04-29 01:56:21 +00:00
2022-04-30 16:32:00 +00:00
# Login screen
displayManager = {
lightdm = {
enable = config.services.xserver.enable;
2022-04-29 01:56:21 +00:00
2022-04-30 16:32:00 +00:00
# Make the login screen dark
2022-05-07 18:24:00 +00:00
greeters.gtk.theme = { name = config.gui.gtkTheme; };
2022-04-30 16:32:00 +00:00
};
2022-04-29 01:56:21 +00:00
};
2022-04-30 16:32:00 +00:00
2022-04-29 01:56:21 +00:00
};
2022-04-30 16:32:00 +00:00
environment.systemPackages = with pkgs;
[
xclip # Clipboard
];
2022-04-29 01:56:21 +00:00
2022-05-12 12:44:03 +00:00
home-manager.users.${config.user} = {
programs.fish.shellAliases = {
pbcopy = "xclip -selection clipboard -in";
pbpaste = "xclip -selection clipboard -out";
};
2022-04-30 16:32:00 +00:00
};
2022-04-29 02:12:16 +00:00
2022-04-30 14:21:43 +00:00
};
2022-04-29 01:56:21 +00:00
}