diff options
Diffstat (limited to 'tv/1systems')
-rw-r--r-- | tv/1systems/nomic.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tv/1systems/nomic.nix b/tv/1systems/nomic.nix index fe1e1d68a..5469fffd5 100644 --- a/tv/1systems/nomic.nix +++ b/tv/1systems/nomic.nix @@ -25,6 +25,16 @@ with import <stockholm/lib>; ]; }; + # Don't use UEFI because current disk was partitioned/formatted for AO753. + # TODO remove following bool.loader section after repartitioning/reformatting + boot.loader = { + grub = { + device = "/dev/sda"; + splashImage = null; + }; + systemd-boot.enable = mkForce false; + }; + fileSystems."/" = { device = "/dev/mapper/nomic1-root"; fsType = "btrfs"; |