mirror of
https://gitlab.com/Zaney/zaneyos.git
synced 2024-12-02 03:23:08 +01:00
9 lines
188 B
Nix
9 lines
188 B
Nix
{ pkgs, config, lib, host, ... }:
|
|
|
|
let inherit (import ../../hosts/${host}/options.nix) enableZeroAD; in
|
|
lib.mkIf (enableZeroAD == true) {
|
|
home.packages = with pkgs; [
|
|
zeroad
|
|
];
|
|
}
|