nixos-config/hosts/plover/hardware-configuration.nix

20 lines
326 B
Nix
Raw Normal View History

2022-11-23 05:27:01 +00:00
{ 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";
};
}