summaryrefslogtreecommitdiffstats
path: root/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
commit50a1932db3411ae0cd5a6b5497842ba38bcba930 (patch)
tree3203e60ae1416ff52556da589771801545c3dcf8 /2configs/fs
parent3c3bfadbf77fbf40ac74524179d08b769bea675d (diff)
cp tv/2/*CAC -> makefu/2/
Diffstat (limited to '2configs/fs')
-rw-r--r--2configs/fs/CAC-CentOS-7-64bit.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/2configs/fs/CAC-CentOS-7-64bit.nix b/2configs/fs/CAC-CentOS-7-64bit.nix
new file mode 100644
index 000000000..c9eb97f44
--- /dev/null
+++ b/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"; }
+ ];
+}