stuff
This commit is contained in:
parent
49cca73363
commit
c05813575f
40 changed files with 2364 additions and 526 deletions
29
home-manager/modules/hyprland/hyprpaper.nix
Normal file
29
home-manager/modules/hyprland/hyprpaper.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
services.hyprpaper = {
|
||||
enable = true;
|
||||
settings = {
|
||||
ipc = "on";
|
||||
splash = false;
|
||||
splash_offset = 2;
|
||||
};
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.hyprpaper
|
||||
];
|
||||
systemd.user.services.hyprpaper.Unit.After = lib.mkForce "graphical-session.target";
|
||||
|
||||
wayland.windowManager.hyprland.settings.exec-once = [
|
||||
"systemctl --user enable --now hyprpaper.service"
|
||||
];
|
||||
services.hyprpaper.settings.wallpaper = lib.singleton {
|
||||
# TODO: Remove after merge https://github.com/nix-community/stylix/pull/2087
|
||||
monitor = "eDP-1";
|
||||
path = toString ../../../wallpapers/oasis.png;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue