diff options
author | makefu <github@syntax-fehler.de> | 2016-06-13 16:22:51 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-06-13 16:22:51 +0200 |
commit | f256bbcb11565138e92266e97856438061b623a0 (patch) | |
tree | 7716c4caccd23adb8a3f9eae772ba5c3d892f38e /makefu/2configs/fs/CAC-CentOS-7-64bit.nix | |
parent | b9c0c46b4d0f9907f1b3fc96494be96abc60c8db (diff) |
cp tv/2/*CAC -> makefu/2/
Diffstat (limited to 'makefu/2configs/fs/CAC-CentOS-7-64bit.nix')
-rw-r--r-- | makefu/2configs/fs/CAC-CentOS-7-64bit.nix | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/makefu/2configs/fs/CAC-CentOS-7-64bit.nix b/makefu/2configs/fs/CAC-CentOS-7-64bit.nix new file mode 100644 index 000000000..c9eb97f44 --- /dev/null +++ b/makefu/2configs/fs/CAC-CentOS-7-64bit.nix @@ -0,0 +1,20 @@ +_: + +{ + boot.loader.grub = { + device = "/dev/sda"; + }; + fileSystems = { + "/" = { + device = "/dev/centos/root"; + fsType = "xfs"; + }; + "/boot" = { + device = "/dev/sda1"; + fsType = "xfs"; + }; + }; + swapDevices = [ + { device = "/dev/centos/swap"; } + ]; +} |