nix/nixos/modules/pkgs.nix
iofq 0c31a7326d
Some checks failed
/ check (push) Has been cancelled
add CI images to repo
2026-03-01 02:20:17 -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
];
};
}