blob: f0fb4e96f0458be762e21927a146f2a111555617 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
{
writeShellApplication,
systemd,
taskwarrior3,
}:
writeShellApplication {
name = "hibernate";
text = builtins.readFile ./hibernate.sh;
inheritPath = false;
runtimeInputs = [
systemd
taskwarrior3
];
}
|