also move hyprland.conf -> hyprland.nix Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
		
			
				
	
	
		
			19 lines
		
	
	
		
			272 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			272 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
{
 | 
						|
  config,
 | 
						|
  ...
 | 
						|
}:
 | 
						|
{
 | 
						|
  services.hyprpaper = {
 | 
						|
    enable = true;
 | 
						|
 | 
						|
    settings =
 | 
						|
      let
 | 
						|
        wallpaper = "${config.home.homeDirectory}/wallpaper.png";
 | 
						|
      in
 | 
						|
      {
 | 
						|
        preload = [ "${wallpaper}" ];
 | 
						|
        wallpaper = [ ", ${wallpaper}" ];
 | 
						|
      };
 | 
						|
  };
 | 
						|
}
 |