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