Files
infrastructure/machines/durruti/configuration.nix
2023-05-09 18:23:06 +02:00

30 lines
479 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
boot.isContainer = true;
networking = {
hostName = mkDefault "durruti";
useDHCP = false;
nameservers = [ "1.1.1.1" ];
};
networking.firewall.allowedTCPPorts = [ 8080 ];
environment.systemPackages = with pkgs; [
go
gcc
tmux
]
imports = [
../modules/malobeo_user.nix
../modules/sshd.nix
../modules/minimal_tools.nix
];
system.stateVersion = "22.11"; # Did you read the comment?
}