16 lines
270 B
Nix
16 lines
270 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
#TODO: CHECK THIS OUT: https://github.com/nix-community/disko its kinda better but felix does not support it
|
|
|
|
{
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/46e36a07-e75a-480a-a2f1-be103c6a3881";
|
|
fsType = "ext4";
|
|
};
|
|
}
|