.
This commit is contained in:
parent
52ab542afd
commit
a8065ff464
1 changed files with 14 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
# NOTE: Required bevuta config is part of this file here, and not bevuta specific.
|
# NOTE: Required bevuta config is part of this file here, and not bevuta specific.
|
||||||
# ./bevuta-config/bevuta.nix
|
# ./bevuta-config/bevuta.nix
|
||||||
./hardware-configuration.nix
|
./hardware-configuration.nix
|
||||||
"${builtins.fetchTarball "https://github.com/nix-community/disko/archive/master.tar.gz"}/module.nix"
|
"${builtins.fetchTarball "https://github.com/khionu/disko/archive/master.tar.gz"}/module.nix"
|
||||||
./disko-config.nix
|
./disko-config.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -137,6 +137,7 @@
|
||||||
wget
|
wget
|
||||||
git
|
git
|
||||||
gnumake
|
gnumake
|
||||||
|
fido2luks
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.virt-manager.enable = true;
|
programs.virt-manager.enable = true;
|
||||||
|
@ -199,6 +200,18 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
system.autoUpgrade = {
|
||||||
|
enable = true;
|
||||||
|
flake = inputs.self.outPath;
|
||||||
|
flags = [
|
||||||
|
"--update-input"
|
||||||
|
"nixpkgs"
|
||||||
|
"-L" # print build logs
|
||||||
|
];
|
||||||
|
dates = "11:00";
|
||||||
|
randomizedDelaySec = "45min";
|
||||||
|
};
|
||||||
|
|
||||||
# Copy the NixOS configuration file and link it from the resulting system
|
# Copy the NixOS configuration file and link it from the resulting system
|
||||||
# (/run/current-system/configuration.nix). This is useful in case you
|
# (/run/current-system/configuration.nix). This is useful in case you
|
||||||
# accidentally delete configuration.nix.
|
# accidentally delete configuration.nix.
|
||||||
|
|
Loading…
Reference in a new issue