feat: full refactoring - work in progress...
This commit is contained in:
16
modules/home-manager/bundles/work-apps.nix
Normal file
16
modules/home-manager/bundles/work-apps.nix
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
{
|
||||
options.myHome.bundle.work-apps.enable = lib.mkEnableOption "enable work-apps bundle";
|
||||
config = lib.mkIf config.myHome.bundle.work-apps.enable {
|
||||
home.packages = map lib.lowPrio [
|
||||
pkgs.tailscale-systray
|
||||
pkgs.slack
|
||||
pkgs.openvpn
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user