aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRosa <rosaontheweb@proton.me>2026-03-30 14:47:27 -0400
committerRosa <rosaontheweb@proton.me>2026-03-30 14:47:27 -0400
commit849624093f6afd2c498bbff8662550bf3fd87c33 (patch)
tree4eddc974d9c374ae89226cdd3105fc74b8cb9b6e
parentc47baf373642c7db5e581df889f985bb38397a81 (diff)
nope, the dream really is dead
-rw-r--r--flake.nix5
-rw-r--r--hosts/canadian-government-system/default.nix15
-rw-r--r--hosts/canadian-government-system/disks.nix82
-rw-r--r--hosts/canadian-government-system/hardware-configuration.nix18
-rw-r--r--hosts/the-meowchine/default.nix7
5 files changed, 6 insertions, 121 deletions
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 67b20b8..0000000
--- a/hosts/canadian-government-system/disks.nix
+++ /dev/null
@@ -1,82 +0,0 @@
-{
- disko.devices.disk = {
- boot1 = {
- content = {
- partitions = {
- efi = {
- content = {
- format = "vfat";
- mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
- type = "filesystem";
- };
-
- size = "512M";
- type = "EF00";
- };
-
- # the root partition is set up in boot2
- root.size = "100%";
- };
-
- type = "gpt";
- };
-
- device = "/dev/sda";
- type = "disk";
- };
-
- boot2 = {
- content = {
- partitions = {
- efi = {
- content = {
- format = "vfat";
- mountOptions = [ "umask=0077" ];
- mountpoint = "/boot";
- type = "filesystem";
- };
-
- size = "512M";
- type = "EF00";
- };
-
- root = {
- content = {
- extraArgs = [
- "-f"
- "-d raid1"
- "/dev/sda2";
- ];
-
- subvolumes = {
- "/nix" = {
- mountOptions = [
- "compress=zstd"
- "noatime"
- ];
-
- mountpoint = "/nix";
- };
-
- "/root" = {
- mountpoint = "/";
- mountOptions = [ "noatime" ];
- };
- };
-
- type = "btrfs";
- };
-
- size = "100%";
- };
- };
-
- type = "gpt";
- };
-
- device = "/dev/sdb";
- 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";
-}
diff --git a/hosts/the-meowchine/default.nix b/hosts/the-meowchine/default.nix
index b6c0648..d5528c0 100644
--- a/hosts/the-meowchine/default.nix
+++ b/hosts/the-meowchine/default.nix
@@ -1,4 +1,9 @@
-{ config, lib, pkgs, ... }:
+{
+ config,
+ lib,
+ pkgs,
+ ...
+}:
{
home-manager.users.rosa = {
imports = [ ../../modules/user ];