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

23 lines
548 B
Nix
Raw Normal View History

2022-11-23 05:27:01 +00:00
{ lib, pkgs, modulesPath, ... }:
2022-11-25 13:27:23 +00:00
# Most of the filesystems listed here are supposed to be overriden to default
# settings of whatever image format configuration this host system will import
# from nixos-generators.
2022-11-23 05:27:01 +00:00
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
2022-11-25 13:27:23 +00:00
fileSystems."/" = lib.mkOverride 2000 {
2022-11-23 05:27:01 +00:00
label = "nixos";
fsType = "ext4";
autoResize = true;
};
2022-11-25 13:27:23 +00:00
fileSystems."/srv" = lib.mkOverride 2000 {
2022-11-23 05:27:01 +00:00
label = "data";
options = [
"discard"
"defaults"
];
fsType = "ext4";
};
}