initial commit

This commit is contained in:
GammaKinematics 2026-03-30 13:10:42 +07:00
commit 90cff4f16a
59 changed files with 6855 additions and 0 deletions

View file

@ -0,0 +1,22 @@
# Hyprpaper - Wallpaper manager configuration
{ config, pkgs, ... }:
let
flakeDir = "${config.home.homeDirectory}/NixOS";
in
{
services.hyprpaper = {
enable = true;
package = pkgs.hyprpaper;
settings = {
ipc = "on";
splash = false;
# Change the wallpaper filename here
preload = [ "${flakeDir}/Wallpapers/Shift.png" ];
wallpaper = [ ", ${flakeDir}/Wallpapers/Shift.png" ];
};
};
}