summaryrefslogtreecommitdiff
path: root/modules/darwin/base.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-07 18:03:24 -0500
committerseth <[email protected]>2024-02-07 18:27:45 -0500
commitcffffeb678e9a1078eeba0f19c9607cda9f31bed (patch)
tree8b8f68aa357becad06845f15b7e528474041371c /modules/darwin/base.nix
parent48712d44fde91d2685089cca7f9d88295fd59817 (diff)
modules/nixos+darwin: move to traits + archetypes model
Diffstat (limited to 'modules/darwin/base.nix')
-rw-r--r--modules/darwin/base.nix18
1 files changed, 0 insertions, 18 deletions
diff --git a/modules/darwin/base.nix b/modules/darwin/base.nix
deleted file mode 100644
index 9fc0d86..0000000
--- a/modules/darwin/base.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- lib,
- inputs,
- ...
-}: {
- imports = [../shared];
-
- # not sure why i have to force this
- environment.etc."nix/inputs/nixpkgs".source = lib.mkForce inputs.nixpkgs.outPath;
-
- programs = {
- bash.enable = true;
- vim.enable = true;
- zsh.enable = true;
- };
-
- services.nix-daemon.enable = true;
-}