summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/fs/single-partition-ext4.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/fs/single-partition-ext4.nix')
-rw-r--r--makefu/2configs/fs/single-partition-ext4.nix12
1 files changed, 0 insertions, 12 deletions
diff --git a/makefu/2configs/fs/single-partition-ext4.nix b/makefu/2configs/fs/single-partition-ext4.nix
deleted file mode 100644
index 1655556a..00000000
--- a/makefu/2configs/fs/single-partition-ext4.nix
+++ /dev/null
@@ -1,12 +0,0 @@
-{config, ...}:
-{
- # fdisk /dev/sda
- # mkfs.ext4 -L nixos /dev/sda1
- boot.loader.grub.enable = assert config.boot.loader.grub.device != ""; true;
- boot.loader.grub.version = 2;
-
- fileSystems."/" = {
- device = "/dev/disk/by-label/nixos";
- fsType = "ext4";
- };
-}