nix/nixos/modules/pkgs.nix
iofq 79e54529eb
Some checks failed
/ check (push) Failing after 2m34s
add CI images to repo
2026-02-28 19:45:21 -06:00

17 lines
306 B
Nix

{ pkgs, config, lib, ...}:
let cfg = config.machine.pkgs; in {
options.machine.pkgs = {
enable = lib.mkOption {
type = lib.types.bool;
default = true;
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
git
vim
tmux
];
};
}