16 lines
260 B
Nix
16 lines
260 B
Nix
|
{ options, config, lib, pkgs, ...}:
|
||
|
let
|
||
|
cfg = config.modules.desktop.foot;
|
||
|
in {
|
||
|
options.modules.desktop.foot = {
|
||
|
enable = lib.mkEnableOption false;
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
|
||
|
users.users.sako.packages = with pkgs; [
|
||
|
foot
|
||
|
];
|
||
|
};
|
||
|
}
|