NixOS-Configs/hosts/pi-server/systemd.nix
2025-11-11 15:19:17 -06:00

14 lines
332 B
Nix

{pkgs, ...}: {
systemd = {
services = {
clean-keychain = {
description = "Clean up .keychain on boot";
wantedBy = ["multi-user.target"];
serviceConfig = {
Type = "oneshot";
ExecStart = "${pkgs.coreutils-full}/bin/rm -rf /home/don/.keychain";
};
};
};
};
}