Merge branch 'new' of ssh://git.ryanpandya.com:15995/ryan/nixos-config into new

This commit is contained in:
Ryan Pandya 2025-02-01 11:13:55 -08:00
commit 7560734c1d

View File

@ -14,32 +14,19 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = fileSystems."/" =
{ device = "tmpfs"; { device = "/dev/disk/by-uuid/1fa30915-49a8-46b8-b9b7-b298fb5c12c2";
fsType = "tmpfs"; fsType = "ext4";
}; };
fileSystems."/iso" = fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/1980-01-01-00-00-00-00"; { device = "/dev/disk/by-uuid/9897-75EA";
fsType = "iso9660"; fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
}; };
fileSystems."/nix/.ro-store" = swapDevices =
{ device = "/iso/nix-store.squashfs"; [ { device = "/dev/disk/by-uuid/073ce40c-8c8c-4a60-bc27-055d9cb78388"; }
fsType = "squashfs"; ];
options = [ "loop" ];
};
fileSystems."/nix/.rw-store" =
{ device = "tmpfs";
fsType = "tmpfs";
};
fileSystems."/nix/store" =
{ device = "overlay";
fsType = "overlay";
};
swapDevices = [ ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # 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 # (the default) this is the recommended approach. When using systemd-networkd it's
@ -49,4 +36,4 @@
# networking.interfaces.ens3.useDHCP = lib.mkDefault true; # networking.interfaces.ens3.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
} }