diff options
Diffstat (limited to 'makefu/1systems/darth.nix')
-rw-r--r-- | makefu/1systems/darth.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/makefu/1systems/darth.nix b/makefu/1systems/darth.nix index 11bb47a93..b39021176 100644 --- a/makefu/1systems/darth.nix +++ b/makefu/1systems/darth.nix @@ -7,7 +7,7 @@ let auxDisk = byid "ata-HGST_HTS721010A9E630_JR10006PH3A02F"; dataPartition = auxDisk + "-part1"; - allDisks = [ rootDisk auxDisk ]; + allDisks = [ rootDisk ]; # auxDisk in { imports = [ ../. @@ -64,10 +64,10 @@ in { services.smartd.devices = builtins.map (x: { device = x; }) allDisks; zramSwap.enable = true; - fileSystems."/data" = { - device = dataPartition; - fsType = "ext4"; - }; + #fileSystems."/data" = { + # device = dataPartition; + # fsType = "ext4"; + #}; boot.loader.grub.device = rootDisk; |