add den pattern

This commit is contained in:
Armel van Ravels
2026-08-14 15:08:14 +02:00
parent 6c1074e3fd
commit 00a8168ef5
92 changed files with 738 additions and 506 deletions

17
modules/core/programs.nix Normal file
View File

@@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
let
dirModules = config.features.modules.core or { };
in
{
config = lib.mkIf ((dirModules.enable or false) && (dirModules.programs.enable or true)) {
programs = {
zsh.enable = true;
hyprland.enable = true;
hyprland.xwayland.enable = true;
virt-manager.enable = true;
};
};
}