50 lines
1.1 KiB
Nix
50 lines
1.1 KiB
Nix
{
|
|
options,
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
inputs,
|
|
...
|
|
}:
|
|
with lib;
|
|
with lib.frajul;
|
|
let
|
|
inherit (inputs.nix-colors.lib-contrib { inherit pkgs; }) gtkThemeFromScheme;
|
|
cfg = config.desktop;
|
|
in
|
|
{
|
|
options.desktop = with types; {
|
|
colorscheme = mkOpt str "catppuccin-mocha" "Theme to use for the desktop";
|
|
autoLogin = mkBoolOpt false "Do auto login";
|
|
};
|
|
|
|
config = {
|
|
prism = {
|
|
enable = true;
|
|
wallpapers = ./wallpapers;
|
|
colorscheme = inputs.nix-colors.colorschemes.${cfg.colorscheme};
|
|
};
|
|
|
|
environment.variables = {
|
|
GTK_THEME = "Catppuccin-Mocha-Compact-Blue-dark";
|
|
};
|
|
|
|
home.extraOptions.gtk = {
|
|
enable = true;
|
|
theme = {
|
|
name = inputs.nix-colors.colorschemes.${cfg.colorscheme}.slug;
|
|
package = gtkThemeFromScheme { scheme = inputs.nix-colors.colorschemes.${cfg.colorscheme}; };
|
|
};
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
};
|
|
|
|
services.xserver.displayManager.autoLogin = mkIf cfg.autoLogin {
|
|
enable = true;
|
|
user = config.user.name;
|
|
};
|
|
};
|
|
}
|