From 31074d797c62f64009375e60b15d4b55a8937cab Mon Sep 17 00:00:00 2001 From: tv Date: Thu, 29 Oct 2015 01:09:54 +0100 Subject: tv config: split stuff into fs and hw --- tv/2configs/fs/CAC-CentOS-7-64bit.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tv/2configs/fs/CAC-CentOS-7-64bit.nix (limited to 'tv/2configs/fs') diff --git a/tv/2configs/fs/CAC-CentOS-7-64bit.nix b/tv/2configs/fs/CAC-CentOS-7-64bit.nix new file mode 100644 index 00000000..c9eb97f4 --- /dev/null +++ b/tv/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"; } + ]; +} -- cgit v1.2.3