mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-11 04:30:41 +03:00
14 lines
150 B
Nix
14 lines
150 B
Nix
{
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../desktop
|
|
];
|
|
fileSystems."/mnt/sapphira" = {
|
|
device = "192.168.1.20:/root";
|
|
fsType = "nfs";
|
|
};
|
|
}
|