dot

NixOS dotfiles
git clone https://git.echoz.io/dot.git
Log | Files | Refs

hyprpaper.nix (255B)


      1 { style, user, ... }:
      2 {
      3   home-manager.users.${user}.services.hyprpaper = {
      4     enable = true;
      5     settings = {
      6       splash = false;
      7       wallpaper = [
      8         {
      9           monitor = "";
     10           path = style.wallpaper;
     11         }
     12       ];
     13     };
     14   };
     15 }