as
This commit is contained in:
parent
252ab16a2a
commit
81f4e09096
1 changed files with 15 additions and 0 deletions
15
modules/desktop/foot/default.nix
Normal file
15
modules/desktop/foot/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue