Merge remote-tracking branch 'origin/darwin' into test

This commit is contained in:
Greg Hellings
2022-09-13 22:56:16 -05:00
41 changed files with 322 additions and 86 deletions
+17
View File
@@ -0,0 +1,17 @@
{ 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
nextcloud-client
];
};
}