nixos-config/hosts/plover/hardware-configuration.nix
2022-11-25 14:51:27 +08:00

20 lines
326 B
Nix

{ lib, pkgs, modulesPath, ... }:
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
fileSystems."/" = {
label = "nixos";
fsType = "ext4";
autoResize = true;
};
fileSystems."/srv" = {
label = "data";
options = [
"discard"
"defaults"
];
fsType = "ext4";
};
}