fix: add git as a system package and use `git+http` scheme
parent
31b1594d67
commit
292ba5e4be
|
@ -55,6 +55,7 @@
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
helix
|
helix
|
||||||
wget
|
wget
|
||||||
|
git
|
||||||
];
|
];
|
||||||
|
|
||||||
# List services that you want to enable:
|
# List services that you want to enable:
|
||||||
|
@ -211,7 +212,7 @@
|
||||||
# Enable automatic upgrades
|
# Enable automatic upgrades
|
||||||
system.autoUpgrade.enable = true;
|
system.autoUpgrade.enable = true;
|
||||||
system.autoUpgrade.allowReboot = true;
|
system.autoUpgrade.allowReboot = true;
|
||||||
system.autoUpgrade.flake = "http://127.0.0.1:3000/Twins/server-configuration.git";
|
system.autoUpgrade.flake = "git+http://127.0.0.1:3000/Twins/server-configuration.git";
|
||||||
|
|
||||||
# Enable automatic garbage collection
|
# Enable automatic garbage collection
|
||||||
nix.gc = {
|
nix.gc = {
|
||||||
|
|
Loading…
Reference in New Issue