fix the things I don't want from the example config
This commit is contained in:
parent
6e2e9a3b72
commit
2ebbd70657
|
@ -1,19 +1,13 @@
|
||||||
{
|
{
|
||||||
fileSystems."/" = {
|
|
||||||
device = "none";
|
|
||||||
fsType = "tmpfs";
|
|
||||||
options = ["relatime" "mode=755" "size=75%"];
|
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" = {
|
fileSystems."/boot" = {
|
||||||
device = "/dev/disk/by-label/BOOT";
|
device = "/dev/disk/by-label/BOOT";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/nix" = {
|
fileSystems."/" = {
|
||||||
device = "/dev/disk/by-label/NIXOS";
|
device = "/dev/disk/by-label/NIXOS";
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
options = [];
|
options = ["noatime"];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [
|
swapDevices = [
|
||||||
|
|
Loading…
Reference in a new issue