20 lines
372 B
Nix
20 lines
372 B
Nix
|
{ config, pkgs, lib, ... }: {
|
||
|
imports = [
|
||
|
#
|
||
|
./codimd.nix
|
||
|
./hardware-configuration.nix
|
||
|
./jitsi.nix
|
||
|
./netdata.nix
|
||
|
./ssh.nix
|
||
|
./workadventure.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = [ pkgs.git pkgs.ag pkgs.htop ];
|
||
|
|
||
|
networking.hostName = "space-left";
|
||
|
|
||
|
security.acme.email = "contact@ingolf-wagner.de";
|
||
|
security.acme.acceptTerms = true;
|
||
|
|
||
|
}
|