summaryrefslogtreecommitdiff
path: root/config/system.nix
diff options
context:
space:
mode:
Diffstat (limited to 'config/system.nix')
-rw-r--r--config/system.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/config/system.nix b/config/system.nix
new file mode 100644
index 0000000..5b6ba5f
--- /dev/null
+++ b/config/system.nix
@@ -0,0 +1,17 @@
+{...}: {
+ personal.system = {
+ flake = "git+file:///etc/nixos/";
+ autoUpgrade = {
+ enable = true;
+ remoteBuilding = {
+ enable = true;
+ builder.domain = "local";
+ };
+ };
+ };
+
+ system.autoUpgrade = {
+ allowReboot = true;
+ dates = "02:00";
+ };
+}