From a278aa743d5fa11486ded65e9d55269e9367621c Mon Sep 17 00:00:00 2001 From: Bad Date: Thu, 15 Apr 2021 14:43:45 +0200 Subject: [PATCH] add a temp hosts block --- profiles/hosts_block/default.nix | 6 ++++++ suites/default.nix | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 profiles/hosts_block/default.nix 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 ];