nixos/home/common/optional/desktop/cinnamon/autostart.nix

18 lines
432 B
Nix

{
home.file.".config/autostart/feh-wallpaper-changer.desktop" = {
mode = 0644;
recursive = true;
text = ''
[ Desktop Entry ]
Type=Application
Exec=feh-wallpaper-changer
X-GNOME-Autostart-enabled=true
NoDisplay=false
Hidden=false
Name[en_GB]=feh-wallpaper-changer
Comment[en_GB]=Periodically changes the wallpaper using feh
X-GNOME-Autostart-Delay=0
'';
};
}