Files
nixos/modules-all/xprograms.nix
T
2022-09-07 20:01:51 -05:00

17 lines
267 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.greg.xprograms;
in with lib; {
options = {
greg.xprograms.enable = mkEnableOption "Install my favorite XPrograms";
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
keepassxc
];
};
}