mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 18:04:41 +02:00
12 lines
204 B
Nix
12 lines
204 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
#FIXME: komplett anpassen
|
|
let
|
|
uuids = import ./vars-uuids.nix;
|
|
in
|
|
{
|
|
fileSystems."/home" = {
|
|
device = "/dev/disk/by-uuid/${uuids.fs.home}";
|
|
fsType = "ext4";
|
|
};
|
|
}
|