summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles/headful.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/darwin/profiles/headful.nix')
-rw-r--r--modules/darwin/profiles/headful.nix33
1 files changed, 0 insertions, 33 deletions
diff --git a/modules/darwin/profiles/headful.nix b/modules/darwin/profiles/headful.nix
deleted file mode 100644
index 023386b..0000000
--- a/modules/darwin/profiles/headful.nix
+++ /dev/null
@@ -1,33 +0,0 @@
-{
- config,
- lib,
- pkgs,
- ...
-}:
-with lib;
-let
- cfg = config.nixfiles.modules.profiles.headful;
-in
-{
- config = mkIf cfg.enable {
- nixfiles.modules.homebrew.enable = true;
-
- # I'm addicted to GNU...
- hm.home.packages = with pkgs; [
- coreutils
- findutils
- getopt
- gnugrep
- gnused
- gnutar
- gzip
- which
- ];
-
- homebrew.casks = [
- { name = "firefox"; }
- { name = "iterm2"; }
- { name = "telegram-desktop"; }
- ];
- };
-}