1
Fork 0
satellite/modules/themes/wallpaper.nix
Matei Adriel 01e4fe7095 Backup
2022-12-09 02:32:25 +01:00

16 lines
407 B
Nix

# Tutorial regarding this:
# https://www.codyhiar.com/blog/how-to-set-desktop-wallpaper-on-nixos/
{ pkgs, config, ... }: {
home-manager.users.adrielus = {
home.packages = with pkgs; [ xwallpaper ];
xdg.configFile."wallpaper".source = pkgs.myThemes.current.wallpaper;
xsession = {
enable = true;
initExtra = ''
xwallpaper --zoom ~/.config/wallpaper
'';
};
};
}