summaryrefslogtreecommitdiffstats
path: root/jeschli/2configs/os-templates
diff options
context:
space:
mode:
authorjeschli <jeschli@gmail.com>2018-01-10 15:09:21 +0100
committerjeschli <jeschli@gmail.com>2018-01-10 15:09:21 +0100
commit547812c8efd0bffa73529ab1b864cc871a8ca6d7 (patch)
tree3e8159b73bfba1965864816e2997c520f910412c /jeschli/2configs/os-templates
parent7c3e4260f279c057ebc45ba6b456f89ca3c97b0e (diff)
jeschli: +enklave.r
Diffstat (limited to 'jeschli/2configs/os-templates')
-rw-r--r--jeschli/2configs/os-templates/CentOS-7-64bit.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/jeschli/2configs/os-templates/CentOS-7-64bit.nix b/jeschli/2configs/os-templates/CentOS-7-64bit.nix
new file mode 100644
index 00000000..fb34e94e
--- /dev/null
+++ b/jeschli/2configs/os-templates/CentOS-7-64bit.nix
@@ -0,0 +1,16 @@
+_:
+
+{
+ imports = [ <nixpkgs/nixos/modules/profiles/qemu-guest.nix> ];
+
+ boot.loader.grub = {
+ device = "/dev/sda";
+ splashImage = null;
+ };
+ boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "sd_mod" "sr_mod" ];
+
+ fileSystems."/" = {
+ device = "/dev/sda1";
+ fsType = "ext4";
+ };
+}