Fixes for things!
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
./audio.nix
|
||||
./encryption.nix
|
||||
./git.nix
|
||||
./hfsprogs.nix
|
||||
./headphones-whmx4000.nix
|
||||
./hyprland-suite.nix
|
||||
./kubernetes.nix
|
||||
|
||||
@@ -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
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user