Commit for generation 239

This commit is contained in:
2024-10-10 15:16:17 -04:00
parent 862ea26827
commit f5a7874774
3 changed files with 29 additions and 8 deletions

View File

@@ -1,5 +1,8 @@
{ inputs, ... }:
{
imports = [ (import ./hyprland.nix) ] ++[ (import ./config.nix) ];
imports =
[ (import ./hyprland.nix) ]
++ [ (import ./config.nix) ]
++ [ (import ./hyprpaper.nix) ];
}

View File

@@ -0,0 +1,18 @@
{ ... }:
{
services.hyprpaper = {
enable = true;
settings = {
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [ "/home/pagedmov/Pictures/Wallpapers/cat-leaves.png" ];
wallpaper = [
"DP-1,/home/pagedmov/Pictures/Wallpapers/cat-leaves.png"
"HDMI-A-1,/home/pagedmov/Pictures/Wallpapers/cat-leaves.png"
];
};
};
}