summaryrefslogtreecommitdiff
path: root/use-cases/sysadmin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'use-cases/sysadmin/default.nix')
-rw-r--r--use-cases/sysadmin/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/use-cases/sysadmin/default.nix b/use-cases/sysadmin/default.nix
deleted file mode 100644
index 1958797..0000000
--- a/use-cases/sysadmin/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-# This module defines Home Manager configuration options for the 'sysadmin' use
-# case. That is, basic system administration.
-
-{ pkgs, super, lib, ... }:
-
-let
- inherit (lib) optional;
-in
-{
- home.packages = with pkgs; [
- tree
- jc
- jq
- # is this not the right it is the one passed to home-manager not nixos ???? 'config'?
- ] ++ (optional (!super.my.use-cases.development.enable) vim);
-}