summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/fs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2016-06-13 16:22:51 +0200
committermakefu <github@syntax-fehler.de>2016-06-13 16:22:51 +0200
commitf256bbcb11565138e92266e97856438061b623a0 (patch)
tree7716c4caccd23adb8a3f9eae772ba5c3d892f38e /makefu/2configs/fs
parentb9c0c46b4d0f9907f1b3fc96494be96abc60c8db (diff)
cp tv/2/*CAC -> makefu/2/
Diffstat (limited to 'makefu/2configs/fs')
-rw-r--r--makefu/2configs/fs/CAC-CentOS-7-64bit.nix20
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 00000000..c9eb97f4
--- /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"; }
+ ];
+}