stockholm/makefu/2configs/fs/CAC-CentOS-7-64bit.nix

21 lines
293 B
Nix
Raw Normal View History

2016-06-13 14:22:51 +00:00
_:
{
boot.loader.grub = {
device = "/dev/sda";
};
fileSystems = {
"/" = {
device = "/dev/centos/root";
fsType = "xfs";
};
"/boot" = {
device = "/dev/sda1";
fsType = "xfs";
};
};
swapDevices = [
{ device = "/dev/centos/swap"; }
];
}