15 lines
263 B
Nix
15 lines
263 B
Nix
|
{ config, lib, modulesPath, pkgs, ... }:
|
||
|
let
|
||
|
role = config.host.role;
|
||
|
in
|
||
|
with lib;
|
||
|
{
|
||
|
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
|
||
|
|
||
|
config = mkIf (role == "server") {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
direnv
|
||
|
htop
|
||
|
];
|
||
|
};
|
||
|
}
|