diff --git a/profiles/hosts_block/default.nix b/profiles/hosts_block/default.nix new file mode 100644 index 0000000..ba88689 --- /dev/null +++ b/profiles/hosts_block/default.nix @@ -0,0 +1,6 @@ +{ +networking.extraHosts = + '' + 127.0.0.1 is.badat.dev + ''; +} diff --git a/suites/default.nix b/suites/default.nix index 540caeb..b03d93a 100644 --- a/suites/default.nix +++ b/suites/default.nix @@ -4,7 +4,7 @@ base = [ users.mae users.root ]; workstation = [ users.root sway develop game profiles.workstation ssh flatpak torrents ]; desktop = workstation ++ [ users.mae-desk amd school three_dee ]; - lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager ]; + lap = workstation ++ [ users.mae-lap laptop bluetooth print networkmanager hosts_block]; }; user = with userProfiles; rec { base = [ direnv git ];