1
0
Fork 0
nix-configuration/modules/roles/server.nix
2024-05-04 21:20:11 -04:00

16 lines
265 B
Nix

{ config, lib, modulesPath, pkgs, ... }:
let
inherit (config.host) role;
in
with lib;
{
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
config = mkIf (role == "server") {
environment.systemPackages = with pkgs; [
htop
tmux
];
};
}