1
0
Fork 0
nix-configuration/modules/roles/server.nix

14 lines
256 B
Nix
Raw Normal View History

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
];
};
}