Home Gen511 @ 2025-05-03-18:26 by jonas@comfy-station

This commit is contained in:
Jonas Röger 2025-05-03 18:27:00 +02:00
parent a62c8f7f88
commit f0df66e74c
3 changed files with 6 additions and 17 deletions

View File

@ -42,7 +42,6 @@
./home/kdeconnect.nix
./home/plasma.nix
./home/ssh.nix
./home/wallpaper.nix
./home/yubikey.nix
];
}

View File

@ -12,6 +12,12 @@ in {
# load hm-vars in x-session
xsession.enable = true;
# symlink wallpapers
home.file.".local/share/wallpaper" = {
source = ../../static/wallpaper;
recursive = true;
};
# Use kvantum-theme
home.sessionVariables = {
QT_STYLE_OVERRIDE = "kvantum";

View File

@ -1,16 +0,0 @@
{
config,
lib,
...
}: let
cfg = config.hive.wallpaper;
in {
options.hive.wallpaper.enable = lib.mkEnableOption "Wallpaper symlink";
config = lib.mkIf cfg.enable {
home.file.".local/share/wallpaper" = {
source = ./static/wallpaper;
recursive = true;
};
};
}