nixos-configuration/hive/deimos/default.nix

33 lines
653 B
Nix
Raw Normal View History

2024-05-18 18:02:14 +00:00
{ sops-nix, lib, ... }:
{
imports = lib.optional (builtins.pathExists ./do-userdata.nix) ./do-userdata.nix ++ [
2024-05-18 18:02:14 +00:00
sops-nix.nixosModules.sops
../../digital-ocean/configuration.nix
../../services/bookshelf.nix
2024-01-31 13:11:29 +00:00
../../services/notebook.nix
2024-05-18 18:02:14 +00:00
../../services/portfolio
];
networking = {
hostName = "deimos";
firewall = {
enable = true;
allowedTCPPorts = [ 80 443 ];
};
};
programs.mosh.enable = true;
2023-12-23 21:27:04 +00:00
services = {
nginx.enable = true;
2023-12-23 21:27:04 +00:00
openssh.enable = true;
};
security.acme = {
acceptTerms = true;
defaults.email = "jrpotter2112@gmail.com";
};
system.stateVersion = "23.11";
}