Removed old stuff

This commit is contained in:
2026-05-04 17:44:19 +02:00
parent 386829caf5
commit 78ee510d83
9094 changed files with 0 additions and 117537 deletions
@@ -1,22 +0,0 @@
{ config, pkgs, lib, flakeRoot, ... }:
let
userConfPath = "${config.home.homeDirectory}/nixos_conf/wallpaperstuff/wallpaper.conf";
in
{
home.packages = [ pkgs.wpaperd ];
systemd.user.services.wpaperd = {
Unit = {
Description = "wpaperd wallpaper daemon";
After = [ "default.target" ];
};
Service = {
Type = "simple";
ExecStart = "${pkgs.wpaperd}/bin/wpaperd --config ${userConfPath}";
Restart = "on-failure";
RestartSec = 1;
};
Install = {
WantedBy = [ "default.target" ];
};
};
}