2022-11-03 01:29:14 +00:00
|
|
|
{ config, pkgs, lib, ... }: {
|
2022-05-15 00:29:03 +00:00
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
options = {
|
|
|
|
gtk.theme = {
|
|
|
|
name = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Theme name for GTK applications";
|
|
|
|
};
|
|
|
|
package = lib.mkOption {
|
|
|
|
type = lib.types.str;
|
|
|
|
description = "Theme package name for GTK applications";
|
|
|
|
default = "gnome-themes-extra";
|
|
|
|
};
|
|
|
|
};
|
2022-05-15 00:29:03 +00:00
|
|
|
};
|
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
config = let
|
2022-12-21 21:18:03 +00:00
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
gtkTheme = {
|
|
|
|
name = config.gtk.theme.name;
|
|
|
|
package = pkgs."${config.gtk.theme.package}";
|
|
|
|
};
|
2022-12-21 21:18:03 +00:00
|
|
|
|
2022-12-22 00:31:25 +00:00
|
|
|
in 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 = {
|
2022-05-06 03:01:56 +00:00
|
|
|
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-11-03 01:29:14 +00:00
|
|
|
background = config.wallpaper;
|
2022-04-29 01:56:21 +00:00
|
|
|
|
2022-04-30 16:32:00 +00:00
|
|
|
# Make the login screen dark
|
2022-05-15 00:29:03 +00:00
|
|
|
greeters.gtk.theme = gtkTheme;
|
2022-04-30 16:32:00 +00:00
|
|
|
|
2022-10-31 00:16:37 +00:00
|
|
|
# Show default user
|
|
|
|
extraSeatDefaults = ''
|
|
|
|
greeter-hide-users = false
|
|
|
|
'';
|
|
|
|
|
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-15 00:29:03 +00:00
|
|
|
# Required for setting GTK theme (for preferred-color-scheme in browser)
|
|
|
|
services.dbus.packages = [ pkgs.dconf ];
|
|
|
|
programs.dconf.enable = true;
|
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
environment.sessionVariables = { GTK_THEME = config.gtk.theme.name; };
|
2022-05-15 00:29:03 +00:00
|
|
|
|
2022-05-12 12:44:03 +00:00
|
|
|
home-manager.users.${config.user} = {
|
2022-05-15 00:29:03 +00:00
|
|
|
|
2022-05-12 12:44:03 +00:00
|
|
|
programs.fish.shellAliases = {
|
|
|
|
pbcopy = "xclip -selection clipboard -in";
|
|
|
|
pbpaste = "xclip -selection clipboard -out";
|
|
|
|
};
|
2022-05-15 00:29:03 +00:00
|
|
|
|
2022-11-03 01:29:14 +00:00
|
|
|
gtk = let
|
|
|
|
gtkExtraConfig = {
|
|
|
|
gtk-application-prefer-dark-theme = config.theme.dark;
|
|
|
|
};
|
2022-05-15 00:29:03 +00:00
|
|
|
in {
|
|
|
|
enable = true;
|
|
|
|
theme = gtkTheme;
|
|
|
|
gtk3.extraConfig = gtkExtraConfig;
|
|
|
|
gtk4.extraConfig = gtkExtraConfig;
|
|
|
|
};
|
|
|
|
|
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
|
|
|
}
|