forked from DGNum/liminix
2fb4756a7f
instead of doing a full reboot, it runs activate / and uses s6-rc-update to install the new service database
14 lines
266 B
Nix
14 lines
266 B
Nix
{ pkgs, ... } :
|
|
{
|
|
imports= [./config-ext4.nix];
|
|
defaultProfile.packages = with pkgs; [
|
|
figlet
|
|
];
|
|
services.ripvanwinkle = pkgs.liminix.services.longrun {
|
|
name = "winkle";
|
|
run = ''
|
|
echo SLEEPING > /dev/console
|
|
sleep 3600
|
|
'';
|
|
};
|
|
}
|