this repo has no description
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge #291

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>

authored by

bors[bot]
Yannick Markus
and committed by
GitHub
d1d2a4ca cf47170d

+1 -11
+1 -1
doc/concepts/hosts.md
··· 38 38 { 39 39 librem = { 40 40 channelName = "latest"; 41 - modules = [ hardware.purism-librem-13v3 ]; 41 + modules = [ nixos-hardware.nixosModules.purism-librem-13v3 ]; 42 42 }; 43 43 } 44 44 ];
-10
profiles/suites.nix
··· 1 - { users, profiles, userProfiles, ... }: 2 - 3 - { 4 - system = with profiles; rec { 5 - base = [ core users.nixos users.root ]; 6 - }; 7 - user = with userProfiles; rec { 8 - base = [ direnv git ]; 9 - }; 10 - }