nix-conf/user/share/default.nix

17 lines
310 B
Nix
Raw Normal View History

2024-10-27 13:34:49 -04:00
{...}: {
2024-10-18 15:11:33 -04:00
imports = [
./nsxiv-rifle.nix
];
xdg.dataFile."bell.wav".source = ./bell.wav;
xdg.dataFile."wallpaper.png".source = ./wallpaper.png;
2024-10-20 02:47:52 -04:00
xdg.dataFile."recently-used.xbel" = {
text = "";
force = true;
};
xdg.dataFile."RecentDocuments" = {
text = "";
force = true;
};
2024-10-18 15:11:33 -04:00
}