nixos/profiles/nix/default.nix
Felix Buehler 4370685504
Some checks are pending
/ Build Nix targets (push) Waiting to run
profile/nix: add nix-output-monitor
2026-01-11 17:37:49 +01:00

28 lines
429 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.nix;
in
{
options.my.profiles.nix = with lib; {
enable = mkEnableOption "nix profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
nix-index
nix-init
nix-output-monitor
nix-prefetch
nix-update
nixfmt-rfc-style
nixpkgs-hammering
nixpkgs-review
shh
];
};
}