19 lines
438 B
Nix
19 lines
438 B
Nix
{config, ...}: {
|
|
imports = [
|
|
./nsxiv-rifle.nix
|
|
];
|
|
|
|
xdg.dataFile."bell.wav".source = ./bell.wav;
|
|
xdg.dataFile."wallpaper.png".source = ./wallpaper.png;
|
|
xdg.dataFile."recently-used.xbel" = {
|
|
text = "";
|
|
force = true;
|
|
};
|
|
xdg.dataFile."RecentDocuments" = {
|
|
text = "";
|
|
force = true;
|
|
};
|
|
xdg.dataFile."kwalletd".source = ./kwalletd;
|
|
xdg.dataFile."rem.cmd".source = config.u.lib.lnn "user/share/rem.cmd";
|
|
}
|