2024-05-07 18:02:59 -04:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
modulesPath,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2024-02-29 09:53:34 -05:00
|
|
|
let
|
2024-05-07 18:02:59 -04:00
|
|
|
inherit (config.host) role;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
2024-05-07 18:02:59 -04:00
|
|
|
with lib;
|
2024-02-29 09:53:34 -05:00
|
|
|
{
|
2024-05-07 18:02:59 -04:00
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
2024-02-29 09:53:34 -05:00
|
|
|
|
2024-05-07 18:02:59 -04:00
|
|
|
config = mkIf (role == "server") {
|
|
|
|
host.apps.tmux.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
htop
|
|
|
|
mdadm
|
|
|
|
];
|
|
|
|
};
|
2024-05-04 21:20:11 -04:00
|
|
|
}
|