diff options
Diffstat (limited to '2configs')
-rw-r--r-- | 2configs/makefu/base.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/2configs/makefu/base.nix b/2configs/makefu/base.nix index 25b80930b..b052b13e4 100644 --- a/2configs/makefu/base.nix +++ b/2configs/makefu/base.nix @@ -3,6 +3,10 @@ with lib; { imports = [ ]; + krebs.enable = true; + krebs.search-domain = "retiolum"; + + networking.hostName = config.krebs.build.host.name; users.extraUsers = { root = { openssh.authorizedKeys.keys = [ config.krebs.users.makefu.pubkey ]; @@ -37,6 +41,7 @@ with lib; environment.systemPackages = with pkgs; [ git vim + gnumake rxvt_unicode.terminfo ]; |