291: Remove ´profiles/suites.nix` and fix hardware module in hosts documentation r=blaggacao a=ymarkus

See #282 

As I understand it, this file isn't needed anymore and the hardware module is not defined properly in the documentation.

Co-authored-by: Yannick Markus <ym@ymarkus.dev>
This commit is contained in:
bors[bot] 2021-05-18 17:12:56 +00:00 committed by GitHub
commit d1d2a4ca08
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 11 deletions

View file

@ -38,7 +38,7 @@ flake.nix:
{
librem = {
channelName = "latest";
modules = [ hardware.purism-librem-13v3 ];
modules = [ nixos-hardware.nixosModules.purism-librem-13v3 ];
};
}
];

View file

@ -1,10 +0,0 @@
{ users, profiles, userProfiles, ... }:
{
system = with profiles; rec {
base = [ core users.nixos users.root ];
};
user = with userProfiles; rec {
base = [ direnv git ];
};
}