summaryrefslogtreecommitdiff
path: root/use-cases/sysadmin/default.nix
blob: 1958797851b27c4bf5b7f40277b97bfe2addb5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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);
}