diff options
author | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-24 20:03:16 +0000 |
---|---|---|
committer | TheArcaneBrony <myrainbowdash949@gmail.com> | 2023-02-24 20:03:16 +0000 |
commit | d6465b7ed0dc877967e4b4c21a4254cae7e0512e (patch) | |
tree | 56038070405b6c123a1113eb5e5f25288703cddb /host | |
parent | Add memory hotplug kernel parameters to base (diff) | |
download | Rory-Open-Architecture-d6465b7ed0dc877967e4b4c21a4254cae7e0512e.tar.xz |
Cleanup
Diffstat (limited to 'host')
-rwxr-xr-x | host/Rory-devenv/configuration.nix | 12 | ||||
-rwxr-xr-x | host/Rory-discordbots/configuration.nix | 9 | ||||
-rwxr-xr-x | host/Rory-fosscord/configuration.nix | 9 | ||||
-rwxr-xr-x | host/Rory-nginx/configuration.nix | 9 | ||||
-rwxr-xr-x | host/Rory-postgres/configuration.nix | 5 |
5 files changed, 1 insertions, 43 deletions
diff --git a/host/Rory-devenv/configuration.nix b/host/Rory-devenv/configuration.nix index 8edaf6f..5087bc9 100755 --- a/host/Rory-devenv/configuration.nix +++ b/host/Rory-devenv/configuration.nix @@ -14,9 +14,6 @@ } ]; }; - # environment.systemPackages = with pkgs; [ - # postgresql - # ]; systemd.tmpfiles.rules = [ "d /data/pg 0750 postgres postgres" ]; services = { @@ -65,14 +62,6 @@ spice-vdagentd.enable = true; }; - users.users = { - Rory = { - packages = with pkgs; [ - - ]; - }; - }; - environment.systemPackages = with pkgs; [ zsh gnome-console @@ -87,7 +76,6 @@ glxinfo vscode-with-extensions nodejs - ]; fonts.fonts = with pkgs; [ (nerdfonts.override { fonts = [ "JetBrainsMono" ]; }) diff --git a/host/Rory-discordbots/configuration.nix b/host/Rory-discordbots/configuration.nix index ed9b248..3eff333 100755 --- a/host/Rory-discordbots/configuration.nix +++ b/host/Rory-discordbots/configuration.nix @@ -13,21 +13,12 @@ networking = { hostName = "Rory-discordbots"; - networkmanager.enable = false; - wireless.enable = false; - - firewall = { - enable = false; - }; interfaces.ens18.ipv4.addresses = [ { address = "192.168.1.50"; prefixLength = 24; } ]; }; - sound.enable = false; - hardware.pulseaudio.enable = false; - system.stateVersion = "22.11"; # DO NOT EDIT! } diff --git a/host/Rory-fosscord/configuration.nix b/host/Rory-fosscord/configuration.nix index 78756f4..d0654b2 100755 --- a/host/Rory-fosscord/configuration.nix +++ b/host/Rory-fosscord/configuration.nix @@ -11,21 +11,12 @@ networking = { hostName = "Rory-fosscord"; - networkmanager.enable = false; - wireless.enable = false; - - firewall = { - enable = false; - }; interfaces.ens18.ipv4.addresses = [ { address = "192.168.1.100"; prefixLength = 24; } ]; }; - sound.enable = false; - hardware.pulseaudio.enable = false; - system.stateVersion = "22.11"; # DO NOT EDIT! } diff --git a/host/Rory-nginx/configuration.nix b/host/Rory-nginx/configuration.nix index 29d2eeb..5d3347c 100755 --- a/host/Rory-nginx/configuration.nix +++ b/host/Rory-nginx/configuration.nix @@ -8,12 +8,6 @@ networking = { hostName = "Rory-nginx"; - networkmanager.enable = false; - wireless.enable = false; - - firewall = { - enable = false; - }; interfaces.ens18.ipv4.addresses = [ { address = "192.168.1.2"; prefixLength = 24; @@ -73,8 +67,5 @@ security.acme.acceptTerms = true; security.acme.defaults.email = "root@thearcanebrony.net"; - sound.enable = false; - hardware.pulseaudio.enable = false; - system.stateVersion = "22.11"; # DO NOT EDIT! } diff --git a/host/Rory-postgres/configuration.nix b/host/Rory-postgres/configuration.nix index 4f191b2..73647d6 100755 --- a/host/Rory-postgres/configuration.nix +++ b/host/Rory-postgres/configuration.nix @@ -13,10 +13,7 @@ prefixLength = 24; } ]; }; - - # environment.systemPackages = with pkgs; [ - # postgresql - # ]; + systemd.tmpfiles.rules = [ "d /data/pg 0750 postgres postgres" ]; services.postgresql = { |