rice/hosts/ami/default.nix
buffet 2def5b10eb
All checks were successful
/ check (push) Successful in 2m44s
refactor: move repeated nginx snippets into one file
2024-06-05 09:40:42 +00:00

42 lines
611 B
Nix

{
pkgs,
agenix,
disko,
...
}: {
imports = [
./system.nix
agenix.nixosModules.default
disko.nixosModules.disko
./404.nix
./acme.nix
./bitwarden.nix
./borg.nix
./disk-config.nix
./forgejo.nix
./msmtp.nix
./murmur.nix
./nginx.nix
./upgrade.nix
./website.nix
../../users/maintainer
];
age.identityPaths = ["/root/.ssh/id_agenix"];
users = {
mutableUsers = false;
users.root.hashedPassword = "!";
};
environment.systemPackages = with pkgs; [
git
htop
neovim
tree
];
services.syncthing.enable = true;
}