14 lines
332 B
Nix
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";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|