Browse Source

BUGFIX! Wrong device UUID

main
parent
commit
e33cff426c
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 4
      README.org
  2. 2
      hosts/raspberry/configuration.nix
  3. 2
      hosts/raspberry/hardware.nix

4
README.org

@ -699,6 +699,8 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/
networking.firewall.enable = false;
networking.wireless.enable = true;
networking.wireless.userControlled.enable = true;
networking.interfaces.eth0.useDHCP = true;
networking.interfaces.wlan0.useDHCP = true;
<<host-config-wifi>>
@ -757,7 +759,7 @@ Deploy this configuration with ~sudo nixos-rebuild switch --flake /etc/dotfiles/
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/444444444-4444-4444-8888-888888888888";
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
options = [ "noatime" ];
};

2
hosts/raspberry/configuration.nix

@ -6,6 +6,8 @@
networking.firewall.enable = false;
networking.wireless.enable = true;
networking.wireless.userControlled.enable = true;
networking.interfaces.eth0.useDHCP = true;
networking.interfaces.wlan0.useDHCP = true;
# Pre-configured wireless networks.
networking.wireless.networks.MyWiFi_5C1870.pskRaw =

2
hosts/raspberry/hardware.nix

@ -34,7 +34,7 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/444444444-4444-4444-8888-888888888888";
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4";
options = [ "noatime" ];
};

Loading…
Cancel
Save