Files
nixos/modules/xprograms.nix
T

18 lines
287 B
Nix
Raw Normal View History

2022-04-29 10:58:31 -05:00
{ 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
2022-09-13 22:32:48 -05:00
nextcloud-client
2022-04-29 10:58:31 -05:00
];
};
}