move baseline configs

This commit is contained in:
Sean Buckley 2020-12-29 13:58:59 -05:00
parent e68eeb588f
commit 034cbe0cd0

View file

@ -18,9 +18,6 @@ in
config = mkMerge [ config = mkMerge [
(import ./modules/cli.nix { inherit config pkgs lib; })
(import ./modules/baseline.nix { inherit config pkgs lib; })
(mkIf (cfg.profile == "server") (mkMerge [ (mkIf (cfg.profile == "server") (mkMerge [
{ services.openssh.enable = true; } { services.openssh.enable = true; }
(import ./modules/auto-update.nix { }) (import ./modules/auto-update.nix { })
@ -41,5 +38,7 @@ in
imports = [ imports = [
./modules/alacritty.nix ./modules/alacritty.nix
./modules/baseline.nix
./modules/cli.nix
]; ];
} }