configured Quark (hopefully final)
This commit is contained in:
@@ -12,21 +12,25 @@
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ ];
|
||||
boot.extraModulePackages = [ ];
|
||||
boot.initrd.network.enable = true;
|
||||
swapDevices = [ ];
|
||||
|
||||
fileSystems."/" = {
|
||||
device = "192.168.1.222:/share/nixos-1";
|
||||
fsType = "nfs4";
|
||||
options = [ "defaults" ];
|
||||
device = "/dev/sda4";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@" ];
|
||||
};
|
||||
fileSystems."/nix" = {
|
||||
device = "/dev/sda4";
|
||||
fsType = "btrfs";
|
||||
options = [ "subvol=@nix" ];
|
||||
};
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
# (the default) this is the recommended approach. When using systemd-networkd it's
|
||||
# still possible to use this option, but it's recommended to use it in conjunction
|
||||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
boot.initrd.network.flushBeforeStage2 = false;
|
||||
#networking.useDHCP = lib.mkDefault true;
|
||||
#boot.initrd.network.flushBeforeStage2 = false;
|
||||
# networking.interfaces.enp3s0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.enp5s0.useDHCP = lib.mkDefault true;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user