nix/host/laptop/Configuration.nix

11 lines
160 B
Nix
Raw Normal View History

{ ... }: {
imports = [ ];
# Filesystems.
fileSystems."/storage/hot" = {
device = "/dev/storage/hot";
fsType = "ext4";
options = [ "nofail" ];
};
}