test of flagging system
This commit is contained in:
parent
a8d18138a3
commit
f3dc384e73
|
@ -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 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Reference in New Issue
Block a user