62 lines
1.5 KiB
Nix
62 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
inherit (lib) mkIf;
|
|
inherit (config) conf;
|
|
in
|
|
mkIf (conf.host != "server") {
|
|
home-manager.users.${conf.username} = {
|
|
home.packages = with pkgs; [
|
|
adwaita-icon-theme
|
|
adwaita-qt
|
|
adwaita-qt6
|
|
];
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme.name = "adwaita";
|
|
style.name = "adwaita-dark";
|
|
};
|
|
|
|
gtk = {
|
|
enable = true;
|
|
gtk4.extraConfig = {
|
|
gtk-application-prefer-dark-theme = true;
|
|
};
|
|
gtk3.extraConfig = {
|
|
gtk-application-prefer-dark-theme = true;
|
|
};
|
|
gtk2.extraConfig = "gtk-application-prefer-dark-theme=1\n";
|
|
theme.name = "Adwaita Dark";
|
|
};
|
|
|
|
dconf = {
|
|
enable = true;
|
|
settings = {
|
|
"org/gnome/desktop/interface" = {
|
|
color-scheme = "prefer-dark";
|
|
};
|
|
};
|
|
};
|
|
|
|
home.pointerCursor = let
|
|
getFrom = url: hash: name: {
|
|
gtk.enable = true;
|
|
x11.enable = true;
|
|
name = name;
|
|
size = 24;
|
|
package = pkgs.runCommand "moveUp" {} ''
|
|
mkdir -p $out/share/icons
|
|
ln -s ${pkgs.fetchzip {
|
|
url = url;
|
|
hash = hash;
|
|
}} $out/share/icons/${name}
|
|
'';
|
|
};
|
|
in
|
|
getFrom "https://github.com/rose-pine/cursor/releases/download/v1.1.0/BreezeX-RosePine-Linux.tar.xz" "sha256-t5xwAPGhuQUfGThedLsmtZEEp1Ljjo3Udhd5Ql3O67c=" "BreezX-RosePine-Linux";
|
|
};
|
|
}
|