summaryrefslogtreecommitdiff
path: root/modules/darwin/base
diff options
context:
space:
mode:
authorseth <[email protected]>2024-10-27 20:12:19 -0400
committerGitHub <[email protected]>2024-10-28 00:12:19 +0000
commit5ec7ee21e036f7bc1cbdec714271c619cb3fdb3d (patch)
tree3277d8ba68ca466e68c58a8373063010db392d2e /modules/darwin/base
parent75ec48c5f7dd7877f2294b86764b1fdadc6b7e88 (diff)
modules: restructure (#487)
* seth: remove unused pkgs * modules: restructure from archetypes back to profiles make less actual modules for everything use lib.mkDefault like it's supposed to move mixins out of server * nixos/resolved: use modern options
Diffstat (limited to 'modules/darwin/base')
-rw-r--r--modules/darwin/base/default.nix11
-rw-r--r--modules/darwin/base/programs.nix13
2 files changed, 0 insertions, 24 deletions
diff --git a/modules/darwin/base/default.nix b/modules/darwin/base/default.nix
deleted file mode 100644
index 7e6f3bd..0000000
--- a/modules/darwin/base/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.base;
-in
-{
- imports = [
- ./programs.nix
- ];
-
- config = lib.mkIf cfg.enable { services.nix-daemon.enable = true; };
-}
diff --git a/modules/darwin/base/programs.nix b/modules/darwin/base/programs.nix
deleted file mode 100644
index 74c059e..0000000
--- a/modules/darwin/base/programs.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ config, lib, ... }:
-let
- cfg = config.base.defaultPrograms;
-in
-{
- config = lib.mkIf cfg.enable {
- programs = {
- bash.enable = true;
- vim.enable = true;
- zsh.enable = true;
- };
- };
-}