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, 16 insertions, 0 deletions
diff --git a/use-cases/sysadmin/default.nix b/use-cases/sysadmin/default.nix
new file mode 100644
index 0000000..1958797
--- /dev/null
+++ b/use-cases/sysadmin/default.nix
@@ -0,0 +1,16 @@
+# 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);
+}