fix(services/foldingathome): correct pkgs setup
This commit is contained in:
parent
39de677b1c
commit
0f7634c617
1 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{ config, lib, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
with lib.hlissner;
|
with lib.hlissner;
|
||||||
let
|
let
|
||||||
|
@ -24,8 +24,8 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
(optional cfg.extra.control fahcontrol)
|
(mkIf cfg.extra.control pkgs.fahcontrol)
|
||||||
(optional cfg.extra.viewer fahviewer)
|
(mkIf cfg.extra.viewer pkgs.fahviewer)
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue