create wallpaper dir if missing & fix home dir persistance

This commit is contained in:
Sam 2024-06-01 15:42:59 +01:00
parent 7681168109
commit 7d5e5cd6ca
2 changed files with 7 additions and 9 deletions

View File

@ -13,10 +13,11 @@
WantedBy = [ "default.target" ];
};
Service = {
Type = [ "oneshot" ];
Type = [ "simple" ];
ExecStart = "${pkgs.writeShellScript "swww-wallpaper-changer" ''
export WAYLAND_DISPLAY="wayland-1"
wallpaper_dir="$HOME/.local/share/bg/"
[ -d "$wallpaper_dir" ] || mkdir -p "$wallpaper_dir"
# Allow some time for desktop to start
sleep 3

View File

@ -50,13 +50,10 @@ in
'';
environment.persistence."/persist" = {
hideMounts = true;
users.${username} = {
directories = [
"."
"/home/${username}"
];
};
};
programs.zsh.enable = true;