nix/nixos/modules/pkgs.nix
iofq a2cb2e03a4
Some checks are pending
/ nvim-bundle (push) Blocked by required conditions
/ check (push) Successful in 3m45s
add CI images to repo
2026-03-01 02:24:00 -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
];
};
}