Regenerate hardware config
This commit is contained in:
parent
c02b728890
commit
3ab66e301f
|
@ -18,6 +18,66 @@
|
|||
fsType = "ext4";
|
||||
};
|
||||
|
||||
fileSystems."/home/katydid" =
|
||||
{ device = "catapool/user/katydid";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas" =
|
||||
{ device = "catapool/nas";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/backup" =
|
||||
{ device = "catapool/backup";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/home/katydid/audio" =
|
||||
{ device = "catapool/user/katydid/audio";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/home/katydid/doc" =
|
||||
{ device = "catapool/user/katydid/doc";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/home/katydid/image" =
|
||||
{ device = "catapool/user/katydid/image";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/home/katydid/video" =
|
||||
{ device = "catapool/user/katydid/video";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas/video" =
|
||||
{ device = "catapool/nas/video";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas/doc" =
|
||||
{ device = "catapool/nas/doc";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas/image" =
|
||||
{ device = "catapool/nas/image";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas/audio" =
|
||||
{ device = "catapool/nas/audio";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
fileSystems."/nas/game" =
|
||||
{ device = "catapool/nas/game";
|
||||
fsType = "zfs";
|
||||
};
|
||||
|
||||
swapDevices = [ ];
|
||||
|
||||
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
||||
|
@ -26,6 +86,7 @@
|
|||
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
||||
networking.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.eth0.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.nebula.beatific.useDHCP = lib.mkDefault true;
|
||||
# networking.interfaces.wlan0.useDHCP = lib.mkDefault true;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
|
||||
|
|
Loading…
Reference in New Issue