aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-29 13:13:55 -0400
committerRosa <rosaontheweb@proton.me>2026-03-29 13:13:55 -0400
commit32b32bd3a815e11aa8f7e3279a638940754b6a23 (patch)
treeda3708b80a5bd1f02b0f66f98ccfba4e7d4bfe7d
parented04bcfb4ed49ff56a5212ba6802bacf9297554f (diff)
the dream is dead
-rw-r--r--.gitignore1
-rw-r--r--flake.nix5
-rw-r--r--hosts/canadian-government-system/default.nix15
-rw-r--r--hosts/canadian-government-system/disks.nix118
-rw-r--r--hosts/canadian-government-system/hardware-configuration.nix18
5 files changed, 1 insertions, 156 deletions
diff --git a/.gitignore b/.gitignore
index 7ad6275..b91777e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/.direnv
+/result
diff --git a/flake.nix b/flake.nix
index 09483c6..5f9a821 100644
--- a/flake.nix
+++ b/flake.nix
@@ -62,11 +62,6 @@
hostName = "meowbook";
};
-
- canadian-government-system = mkSystem {
- additionalModules = [ disko.nixosModules.disko ];
- hostName = "canadian-government-system";
- };
};
};
}
diff --git a/hosts/canadian-government-system/default.nix b/hosts/canadian-government-system/default.nix
deleted file mode 100644
index 3086ec9..0000000
--- a/hosts/canadian-government-system/default.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{ 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;
- };
-}
diff --git a/hosts/canadian-government-system/disks.nix b/hosts/canadian-government-system/disks.nix
deleted file mode 100644
index 01a23e7..0000000
--- a/hosts/canadian-government-system/disks.nix
+++ /dev/null
@@ -1,118 +0,0 @@
-{
- disko.devices.disk = {
- boot1 = {
- content = {
- partitions = {
- boot = {
- content = {
- name = "boot";
- type = "mdraid";
- };
-
- size = "500M";
- type = "EF00";
- };
-
- root = {
- content = {
- name = "raid1";
- type = "mdraid";
- };
-
- size = "100%";
- };
- };
-
- type = "gpt";
- };
-
- device = "/dev/sda";
- type = "disk";
- };
-
- boot2 = {
- content = {
- partitions = {
- boot = {
- content = {
- name = "boot";
- type = "mdraid";
- };
-
- size = "500M";
- type = "EF00";
- };
-
- root = {
- content = {
- name = "raid1";
- type = "mdraid";
- };
-
- size = "100%";
- };
- };
-
- type = "gpt";
- };
-
- device = "/dev/sdb";
- type = "disk";
- };
-
- mdadm = {
- boot = {
- content = {
- format = "vfat";
- mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
- type = "filesystem";
- };
-
- level = 1;
- metadata = "1.0";
- type = "mdadm";
- };
-
- raid1 = {
- content = {
- partitions.primary = {
- content = {
- format = "xfs";
- mountOptions = [ "noatime" ];
- mountpoint = "/";
- type = "filesystem";
- };
-
- size = "100%";
- };
-
- type = "gpt";
- };
-
- level = 1;
- type = "mdadm";
- };
- };
-
- mass-storage = {
- content = {
- partitions.main = {
- content = {
- format = "xfs";
- mountOptions = [ "noatime" ];
- mountpoint = "/mnt/mass-storage";
- type = "filesystem";
- };
-
- size = "100%";
- };
-
- type = "gpt";
- };
-
- device = "/dev/sdc";
- type = "disk";
- };
- };
-}
diff --git a/hosts/canadian-government-system/hardware-configuration.nix b/hosts/canadian-government-system/hardware-configuration.nix
deleted file mode 100644
index 88db163..0000000
--- a/hosts/canadian-government-system/hardware-configuration.nix
+++ /dev/null
@@ -1,18 +0,0 @@
-{
- config,
- lib,
- modulesPath,
- pkgs,
- ...
-}:
-{
- imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
- boot.initrd.availableKernelModules = [
- "xhci_pci"
- "ahci"
- "usbhid"
- "sd_mod"
- ];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
-}