all repos — nixfiles @ e97ba415b84eb1eb866a176348bbd787fda91e03

System and user configuration, managed by nix and home-manager

nano: reinstall
Alan Pearce alan@alanpearce.eu
Sun, 16 Feb 2025 20:47:35 +0100
commit

e97ba415b84eb1eb866a176348bbd787fda91e03

parent

25a9f64b4287125d481f7368eceede80ed6c716a

1 files changed, 3 insertions(+), 14 deletions(-)

jump to
M system/nano-hardware.nixsystem/nano-hardware.nix
@@ -16,27 +16,16 @@ boot.extraModulePackages = [ ]; 
   fileSystems."/" =
     {
-      device = "/dev/disk/by-uuid/3e2e984a-0f2d-4615-be50-cea40090b463";
+      device = "/dev/disk/by-uuid/7c2a0514-b94f-4369-8898-4d038740a2cd";
       fsType = "ext4";
     };
 
   fileSystems."/boot" =
     {
-      device = "/dev/disk/by-uuid/96FE-219D";
+      device = "/dev/disk/by-uuid/EFF6-3E55";
       fsType = "vfat";
-      options = [ "fmask=0022" "dmask=0022" ];
+      options = [ "fmask=0027" "dmask=0027" ];
     };
-
-  swapDevices =
-    [{ device = "/dev/disk/by-uuid/cfedef33-a711-42dd-8816-b1e119e20e55"; }];
-
-  # 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;
-  # networking.interfaces.eth0.useDHCP = lib.mkDefault true;
-  # networking.interfaces.eth1.useDHCP = lib.mkDefault true;
 
   nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
 }