diff --git a/doc/concepts/hosts.md b/doc/concepts/hosts.md index 1fa90284..b8cc8492 100644 --- a/doc/concepts/hosts.md +++ b/doc/concepts/hosts.md @@ -38,7 +38,7 @@ flake.nix: { librem = { channelName = "latest"; - modules = [ hardware.purism-librem-13v3 ]; + modules = [ nixos-hardware.nixosModules.purism-librem-13v3 ]; }; } ]; diff --git a/profiles/suites.nix b/profiles/suites.nix deleted file mode 100644 index eadb20c6..00000000 --- a/profiles/suites.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ users, profiles, userProfiles, ... }: - -{ - system = with profiles; rec { - base = [ core users.nixos users.root ]; - }; - user = with userProfiles; rec { - base = [ direnv git ]; - }; -}