add desktop base and laptop modules
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{ lib, config, pkgs, ... }:
|
||||
let
|
||||
inherit (lib) mkIf mkOption types;
|
||||
in
|
||||
{
|
||||
options.smayzy.base = mkOption {
|
||||
type = types.bool;
|
||||
default = false;
|
||||
description = "base settings";
|
||||
};
|
||||
|
||||
config = mkIf config.smayzy.base {
|
||||
smayzy = {
|
||||
nvf.enable = true;
|
||||
nh.enable = true;
|
||||
fzf.enable = true;
|
||||
zsh.enable = true;
|
||||
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user