Add home manager

This commit is contained in:
2026-03-16 21:14:43 +01:00
parent 7175a457c7
commit d4b7339804
26 changed files with 740 additions and 0 deletions

22
home/wm/hyprpaper.nix Normal file
View File

@@ -0,0 +1,22 @@
{ config, pkgs, ... }:
let
wallpaper = builtins.toString ../backgrounds/monkey.jpg;
wallpaper2 = builtins.toString ../backgrounds/bird.jpg;
in
{
services.hyprpaper = {
enable = true;
settings = {
preload = [
wallpaper
wallpaper2
];
wallpaper = [
"DP-2,${wallpaper2}"
",${wallpaper}"
];
};
};
}