Added Thinkpad and pi4 configs

This commit is contained in:
2025-04-12 19:45:01 +02:00
parent 00cf2c38f9
commit 6ca92c8537
74 changed files with 7730 additions and 973 deletions

View File

@ -0,0 +1,33 @@
# Wallpapers
{ pkgs, ... }:
let
common = import ../../common.nix;
in
{
home.packages = with pkgs; [
hyprpaper
];
services.hyprpaper = {
enable = true;
settings =
let
wallpaperDir = ../../wallpapers;
monitor1 = "${wallpaperDir}/nixos_waves.png";
in
{
ipc = "on";
splash = false;
splash_offset = 2.0;
preload = [
monitor1
];
wallpaper = [
"${common.monitor1},${monitor1}"
];
};
};
}