Skip to content

Commit b40479d

Browse files
committed
fix incorrect path in the greeter module
1 parent 7146d0d commit b40479d

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

nix/greeter.nix

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,12 +114,14 @@ in {
114114
${lib.getExe pkgs.jq} '.wallpaperPath = "/var/lib/dmsgreeter/wallpaper.jpg"' session.orig.json > session.json
115115
fi
116116
fi
117+
118+
mv dms-colors.json colors.json || :
117119
chown ${user}: * || :
118120
'';
119121
programs.dankMaterialShell.greeter.configFiles = lib.mkIf (cfg.configHome != null) [
120122
"${cfg.configHome}/.config/DankMaterialShell/settings.json"
121123
"${cfg.configHome}/.local/state/DankMaterialShell/session.json"
122-
"${cfg.configHome}/.cache/quickshell/dankshell/dms-colors.json"
124+
"${cfg.configHome}/.cache/DankMaterialShell/dms-colors.json"
123125
];
124126
};
125127
}

0 commit comments

Comments
 (0)