13 lines
215 B
Nix
13 lines
215 B
Nix
{ lib, config, ... }:
|
|
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (builtins) elem;
|
|
host = config.systemModules.host;
|
|
in
|
|
|
|
{
|
|
config = mkIf (elem "workstation" host.function) {
|
|
programs.seahorse.enable = true;
|
|
};
|
|
}
|