nitrokey: Fix module

For some reason, using the // atribute set merge operator does not work
here.
reuse
Simon Bruder 2024-01-22 00:09:37 +01:00
parent 54218c7278
commit 04a0a6e5ff
Signed by: simon
GPG Key ID: 347FF8699CDA0776
1 changed files with 14 additions and 11 deletions

View File

@ -1,16 +1,19 @@
# SPDX-FileCopyrightText: 2023 Simon Bruder <simon@sbruder.de>
# SPDX-FileCopyrightText: 2023-2024 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
{ config, lib, pkgs, ... }:
{
hardware.nitrokey.enable = true;
} // (lib.mkIf config.sbruder.gui.enable {
environment.systemPackages = with pkgs; [
# both depend on pypemicro, which is not needed, but nixpkgs requires it
# (even though it could have been optional: https://github.com/NixOS/nixpkgs/pull/183099#discussion_r933226708)
#nitrokey-app2
#pynitrokey
];
})
lib.mkMerge [
{
hardware.nitrokey.enable = true;
}
(lib.mkIf config.sbruder.gui.enable {
environment.systemPackages = with pkgs; [
# both depend on pypemicro, which is not needed, but nixpkgs requires it
# (even though it could have been optional: https://github.com/NixOS/nixpkgs/pull/183099#discussion_r933226708)
#nitrokey-app2
#pynitrokey
];
})
]