Fixes for things!
This commit is contained in:
+1
-1
Submodule azos-core updated: 6d44344fd1...d1b25fa44d
@@ -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
|
||||||
|
|||||||
@@ -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