All checks were successful
Evaluate Hydra Jobs / eval-hydra-jobs (push) Successful in 2m48s
its not used yet anyways
38 lines
661 B
Nix
38 lines
661 B
Nix
{ config, lib, pkgs, inputs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
sops.defaultSopsFile = ./secrets.yaml;
|
|
|
|
networking = {
|
|
hostName = mkDefault "durruti";
|
|
useDHCP = false;
|
|
nameservers = [ "1.1.1.1" ];
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8080 ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
go
|
|
gcc
|
|
tmux
|
|
];
|
|
|
|
imports = [
|
|
inputs.ep3-bs.nixosModules.ep3-bs
|
|
inputs.tasklist.nixosModules.malobeo-tasklist
|
|
|
|
./documentation.nix
|
|
|
|
../modules/malobeo_user.nix
|
|
../modules/sshd.nix
|
|
../modules/minimal_tools.nix
|
|
];
|
|
|
|
services.malobeo-tasklist.enable = true;
|
|
|
|
system.stateVersion = "22.11"; # Did you read the comment?
|
|
}
|
|
|