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 = {
|