Fixes for things!

This commit is contained in:
2026-04-02 10:44:37 +03:00
parent dccdcd4f18
commit 6215127089
3 changed files with 22 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
./audio.nix ./audio.nix
./encryption.nix ./encryption.nix
./git.nix ./git.nix
./hfsprogs.nix
./headphones-whmx4000.nix ./headphones-whmx4000.nix
./hyprland-suite.nix ./hyprland-suite.nix
./kubernetes.nix ./kubernetes.nix
+20
View File
@@ -0,0 +1,20 @@
{
lib,
config,
pkgs,
...
}: let
isEnabled =
config.azos.hfsprogs.enable;
in {
options.azos.hfsprogs.enable = lib.mkOption {
default = true;
type = lib.types.bool;
};
config = lib.mkIf isEnabled {
home.packages = with pkgs; [
hfsprogs
];
};
}