From 7df6fdaab552dc51b075fde68f218d40948deeef Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Mon, 13 Jul 2020 22:04:34 -0600 Subject: [PATCH] hosts#NixOS: add fileSystems to pass checks --- hosts/NixOS.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/NixOS.nix b/hosts/NixOS.nix index f6e0cb3..5039cff 100644 --- a/hosts/NixOS.nix +++ b/hosts/NixOS.nix @@ -6,4 +6,6 @@ boot.loader.efi.canTouchEfiVariables = true; networking.networkmanager.enable = true; + + fileSystems."/" = { device = "/dev/disk/by-label/nixos"; }; }