diff options
| author | Andrew <admonty1@protonmail.com> | 2025-08-22 23:48:33 -0400 |
|---|---|---|
| committer | Andrew <admonty1@protonmail.com> | 2025-08-22 23:48:33 -0400 |
| commit | 61fd81562a9a2d7744e05b939948898e25dfb6fc (patch) | |
| tree | 4c21b0e28ddf30a677089d9acb349d1b66270a7b /hyprpaper.nix | |
| parent | screenshot manager PRINT / SUPER+SHIFT+S (diff) | |
| download | nixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.tar.gz nixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.tar.bz2 nixos-61fd81562a9a2d7744e05b939948898e25dfb6fc.zip | |
unfixed and fixed ghostty. + reformat files
Diffstat (limited to 'hyprpaper.nix')
| -rw-r--r-- | hyprpaper.nix | 55 |
1 files changed, 28 insertions, 27 deletions
diff --git a/hyprpaper.nix b/hyprpaper.nix index 013eae9..58c97f2 100644 --- a/hyprpaper.nix +++ b/hyprpaper.nix @@ -1,33 +1,34 @@ { config, pkgs, ... }: -let - hk_1440 = pkgs.fetchurl { - url = "https://raw.githubusercontent.com/Skullheadx/dotfiles/16c0b7ce0cf0a6286554a3bbe60c636871fb75c9/backgrounds/hollowknightbackground_2560x1440.png"; - hash = "sha256-NyfvBFeEkXe3Z6ZpciJlOEBOMvKQjZKoH9ji2jiqmj8="; - }; - hk_1080 = pkgs.fetchurl { - url = "https://raw.githubusercontent.com/Skullheadx/dotfiles/16c0b7ce0cf0a6286554a3bbe60c636871fb75c9/backgrounds/hollowknightbackground_1920x1080.png"; - hash = "sha256-mCqYc4w+S8aVALo6wMyXrWtCmfw78kIEcFAhxlFNbHQ="; - }; - testImage = pkgs.fetchurl { - url = "https://i.redd.it/mvev8aelh7zc1.png"; - hash = "sha256-lJjIq+3140a5OkNy/FAEOCoCcvQqOi73GWJGwR2zT9w"; - }; +let + hk_1440 = pkgs.fetchurl { + url = "https://raw.githubusercontent.com/Skullheadx/dotfiles/16c0b7ce0cf0a6286554a3bbe60c636871fb75c9/backgrounds/hollowknightbackground_2560x1440.png"; + hash = "sha256-NyfvBFeEkXe3Z6ZpciJlOEBOMvKQjZKoH9ji2jiqmj8="; + }; + hk_1080 = pkgs.fetchurl { + url = "https://raw.githubusercontent.com/Skullheadx/dotfiles/16c0b7ce0cf0a6286554a3bbe60c636871fb75c9/backgrounds/hollowknightbackground_1920x1080.png"; + hash = "sha256-mCqYc4w+S8aVALo6wMyXrWtCmfw78kIEcFAhxlFNbHQ="; + }; + testImage = pkgs.fetchurl { + url = "https://i.redd.it/mvev8aelh7zc1.png"; + hash = "sha256-lJjIq+3140a5OkNy/FAEOCoCcvQqOi73GWJGwR2zT9w"; + }; in { services.hyprpaper = { - enable = true; - settings = { - ipc = "on"; - splash = false; - preload = [ - (builtins.toString hk_1440) - (builtins.toString hk_1080) - ]; + enable = true; + settings = { + ipc = "on"; + splash = false; + preload = [ + (builtins.toString hk_1440) + (builtins.toString hk_1080) + ]; - wallpaper = [ - "DP-3,${builtins.toString hk_1440}" - "DP-2,${builtins.toString hk_1080}" - ]; - }; -};} + wallpaper = [ + "DP-3,${builtins.toString hk_1440}" + "DP-2,${builtins.toString hk_1080}" + ]; + }; + }; +} |
