summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorKjetil Orbekk <kj@orbekk.com>2021-02-20 21:42:46 -0500
committerKjetil Orbekk <kj@orbekk.com>2021-02-20 21:42:56 -0500
commitb2afb690e815b2a497bb8d1345a74ee123ff0173 (patch)
tree5fecd67f6f29264bedec6933beb1f45c14afb3fc /config
parent2f53c48cc344ac6bd6a20a28e6aff3c698ebdea2 (diff)
fix repo path for dragon
Diffstat (limited to 'config')
-rw-r--r--config/auto-upgrade.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/config/auto-upgrade.nix b/config/auto-upgrade.nix
index ad8de9a..ce1c83a 100644
--- a/config/auto-upgrade.nix
+++ b/config/auto-upgrade.nix
@@ -4,9 +4,10 @@
enable = true;
dates = "weekly";
flake =
- if config.networking.hostName == "dragon" then
- "git+file:///storage/projects/nixos-config.git"
- else
+ ## git+file doesn't work with bare repos :(
+ #if config.networking.hostName == "dragon" then
+ # "git+file:///storage/projects/nixos-config.git"
+ #else
"git+https://git.orbekk.com/nixos-config.git";
};
}