Works on Darwin
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
{ 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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user