2024-02-29 09:53:34 -05:00
|
|
|
{ config, lib, modulesPath, pkgs, ... }:
|
|
|
|
let
|
2024-03-02 12:58:30 -05:00
|
|
|
inherit (config.host) role;
|
2024-02-29 09:53:34 -05:00
|
|
|
in
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
|
|
|
|
|
|
|
config = mkIf (role == "server") {
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
htop
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|