mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
20 lines
326 B
Nix
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";
|
|
};
|
|
}
|