From 034cbe0cd0e38f5a1cb1dbc704d8d0481c633757 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Tue, 29 Dec 2020 13:58:59 -0500 Subject: [PATCH] move baseline configs --- default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/default.nix b/default.nix index 00ee0fa..71a5d0c 100644 --- a/default.nix +++ b/default.nix @@ -18,9 +18,6 @@ in config = mkMerge [ - (import ./modules/cli.nix { inherit config pkgs lib; }) - (import ./modules/baseline.nix { inherit config pkgs lib; }) - (mkIf (cfg.profile == "server") (mkMerge [ { services.openssh.enable = true; } (import ./modules/auto-update.nix { }) @@ -41,5 +38,7 @@ in imports = [ ./modules/alacritty.nix + ./modules/baseline.nix + ./modules/cli.nix ]; }