test of flagging system

This commit is contained in:
James Patrick 2021-12-13 01:13:26 -05:00
parent a8d18138a3
commit f3dc384e73

View File

@ -1,4 +1,18 @@
{ config, lib, pkgs, ... }: { { options, config, lib, pkgs, ... }:
let cfg = config.application.mako;
in with lib; {
options = {
application.mako = {
enable = mkOption {
# TODO track based on sway default
default = false;
type = with types; bool;
description = "testing one two three";
};
};
};
config = mkIf cfg.enable {
home-manager.users.james = { home-manager.users.james = {
programs.mako = { programs.mako = {
@ -52,4 +66,5 @@
}; };
}; };
};
} }