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

View File

@ -7,6 +7,7 @@
./monitors.nix ./monitors.nix
./mouse.nix ./mouse.nix
./networking.nix ./networking.nix
./server.nix
./sleep.nix ./sleep.nix
./wifi.nix ./wifi.nix
]; ];