mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 02:52:55 +00:00
46 lines
919 B
Nix
46 lines
919 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
|
|
config = lib.mkIf config.gui.enable {
|
|
|
|
# Enable the X11 windowing system.
|
|
services.xserver = {
|
|
enable = config.gui.enable;
|
|
|
|
# Enable touchpad support
|
|
libinput.enable = true;
|
|
|
|
# Login screen
|
|
displayManager = {
|
|
lightdm = {
|
|
enable = config.services.xserver.enable;
|
|
background = config.wallpaper;
|
|
|
|
# Show default user
|
|
# Also make sure /var/lib/AccountsService/users/<user> has SystemAccount=false
|
|
extraSeatDefaults = ''
|
|
greeter-hide-users = false
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
xclip # Clipboard
|
|
];
|
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
programs.fish.shellAliases = {
|
|
pbcopy = "xclip -selection clipboard -in";
|
|
pbpaste = "xclip -selection clipboard -out";
|
|
};
|
|
};
|
|
};
|
|
}
|