Compare commits

..

No commits in common. "e7fcffc7a63c43d1124847c2719526132fae3160" and "0372bb3e937166cf99150e9004a8a5342eeaff8d" have entirely different histories.

2 changed files with 6 additions and 9 deletions

View file

@ -1,9 +1,8 @@
{ pkgs, ... }:
{ pkgs, config, ... }:
{
imports = [
../cachix.nix
];
environment.systemPackages = with pkgs; [
# vim -- added by srvos.nixosModules.server
# git -- srvos.nixosModules.server
@ -44,13 +43,8 @@
virtualisation.docker.enable = true;
networking = {
# Runner communication port for cache restores.
firewall.allowedTCPPorts = [ 45315 ];
networkmanager.enable = true;
useDHCP = true;
};
# Runner communication port for cache restores.
networking.firewall.allowedTCPPorts = [ 45315 ];
system.stateVersion = "24.05";
}

View file

@ -9,5 +9,8 @@
boot.loader.grub.device = "/dev/sda";
fileSystems."/" = lib.mkDefault { device = "/dev/disk/by-partlabel/disk-main-root"; fsType = "ext4"; };
networking.useNetworkd = true;
networking.useDHCP = true;
};
}