aboutsummaryrefslogtreecommitdiff
path: root/hosts/canadian-government-system/default.nix
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-30 15:12:01 -0400
committerRosa <rosaontheweb@proton.me>2026-03-30 15:12:01 -0400
commit2b5b1da02c4c86563569b8feca7beb91f98c5977 (patch)
tree5f8cb230dd9c6f7449a67c5231b00b8ebab37366 /hosts/canadian-government-system/default.nix
parent849624093f6afd2c498bbff8662550bf3fd87c33 (diff)
Maybe it's not dead yet
This reverts commit 849624093f6afd2c498bbff8662550bf3fd87c33.
Diffstat (limited to 'hosts/canadian-government-system/default.nix')
-rw-r--r--hosts/canadian-government-system/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/hosts/canadian-government-system/default.nix b/hosts/canadian-government-system/default.nix
new file mode 100644
index 0000000..3086ec9
--- /dev/null
+++ b/hosts/canadian-government-system/default.nix
@@ -0,0 +1,15 @@
+{ config, ... }:
+{
+ imports = [ ./disks.nix ];
+ networking.domain = "eviltransgenders.club";
+ security.doas.enable = true;
+ services.openssh.enable = true;
+ system.stateVersion = "26.05";
+ users.users = {
+ root.openssh.authorizedKeys.keys = [
+ "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAICcEZBikGjnGveif3TsfBkWCl1Qrw0yZoOAn/LxS8oAa rosa@lust"
+ ];
+
+ rosa.enable = true;
+ };
+}