enable missing configs for oracle

This commit is contained in:
Noah Masur
2022-12-22 00:47:25 +00:00
parent b4ddb149cc
commit 524a5aa347
2 changed files with 5 additions and 0 deletions

View File

@ -23,6 +23,7 @@ nixpkgs.lib.nixosSystem {
theme = { colors = (import ../../colorscheme/gruvbox).dark; };
nixpkgs.overlays = overlays;
wsl.enable = false;
caddy.enable = true;
# FQDNs for various services
networking.hostName = "oracle";
@ -49,6 +50,7 @@ nixpkgs.lib.nixosSystem {
users.users.nextcloud.extraGroups = [ "jellyfin" ];
# Wireguard config for Transmission
wireguard.enable = true;
networking.wireguard.interfaces.wg0 = {
# The local IPs for this machine within the Wireguard network
@ -88,6 +90,8 @@ nixpkgs.lib.nixosSystem {
# Clone dotfiles
dotfiles.enable = true;
neovim.enable = true;
}
];
}