1
0
Fork 0

Add channel snapshot to image itself

master
dump_stack() 2020-01-05 08:49:48 +00:00
parent 4066e347ef
commit 7df36ae8fc
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 1 additions and 17 deletions

View File

@ -18,6 +18,7 @@ let
});
in {
imports = [
<nixpkgs/nixos/modules/installer/cd-dvd/channel.nix>
./target.nix
#./hardware-configuration.nix
];
@ -29,23 +30,6 @@ in {
# You can not use networking.networkmanager with networking.wireless
networking.wireless.enable = false;
systemd.services."init-nix-channels" = {
enable = true;
serviceConfig = {
ExecStartPre = "${pkgs.su}/bin/su root -c '${pkgs.nix}/bin/nix-channel --update'";
ExecStart = "/bin/sh";
Restart = "on-failure";
RestartSec = "5";
TimeoutSec = "120";
};
};
systemd.timers."init-nix-channels" = {
timerConfig.OnBootSec = "30s";
timerConfig.Unit = "init-nix-channels.service";
wantedBy = ["timers.target"];
};
users.users.user = {
isNormalUser = true;
extraGroups = [ "audio" "libvirtd" ];