zaphyra's git: nixfiles

zaphyra and void's nixfiles

commit ea48df668121711f4ecf903eee39a03d8f4aa090
parent 4cf4a5b6d1e5b182c3a806994845671f3c77af33
Author: Katja (zaphyra) <git@ctu.cx>
Date: Tue, 27 May 2025 17:28:09 +0200

flake: move zaphyra's website-repo to new git
5 files changed, 32 insertions(+), 33 deletions(-)
diff --git a/config/home/katja/programs/gpg.nix b/config/home/katja/programs/gpg.nix
@@ -54,7 +54,7 @@
         # my own key
         {
           trust = 5;
-          source = "${pkgs.ctucx-website}/gpg_pubkey.asc";
+          source = "${pkgs.zaphyra-website}/gpg_pubkey.asc";
         }
 
         #izzie@haaien.xyz
diff --git a/config/nixos/modules/presets/katja/enable.nix b/config/nixos/modules/presets/katja/enable.nix
@@ -24,7 +24,7 @@ in
     users.users.root = {
       extraGroups = [ "ssh" ];
       openssh.authorizedKeys.keys = [
-        (builtins.readFile "${pkgs.ctucx-website}/ssh_pubkey.asc")
+        (builtins.readFile "${pkgs.zaphyra-website}/ssh_pubkey.asc")
       ];
     };
 

@@ -89,20 +89,19 @@ in
       };
     };
 
-
     services = {
       timesyncd.enable = lib.mkDefault true;
-      fstrim.enable    = lib.mkDefault true;
+      fstrim.enable = lib.mkDefault true;
 
       journald.extraConfig = "SystemMaxUse=2.5G";
 
       logind.killUserProcesses = lib.mkDefault true;
 
       nginx = {
-        recommendedGzipSettings  = true;
-        recommendedOptimisation  = true;
+        recommendedGzipSettings = true;
+        recommendedOptimisation = true;
         recommendedProxySettings = true;
-        recommendedTlsSettings   = true;
+        recommendedTlsSettings = true;
         commonHttpConfig = ''
           server_names_hash_bucket_size 64;
           charset utf-8;
diff --git a/config/nixos/modules/users/katja.nix b/config/nixos/modules/users/katja.nix
@@ -39,7 +39,7 @@ in
           "networkmanager"
         ];
       openssh.authorizedKeys.keys = [
-        (builtins.readFile "${pkgs.ctucx-website}/ssh_pubkey.asc")
+        (builtins.readFile "${pkgs.zaphyra-website}/ssh_pubkey.asc")
       ];
     };
 
diff --git a/flake.lock b/flake.lock
@@ -96,26 +96,6 @@
         "type": "github"
       }
     },
-    "ctucxWebsite": {
-      "inputs": {
-        "nixpkgs": [
-          "nixpkgs"
-        ]
-      },
-      "locked": {
-        "lastModified": 1747383063,
-        "narHash": "sha256-q6yGtNTu8WPsmGVk9Nft4hFqnmCv2NZkD0TI/tMRVow=",
-        "ref": "refs/heads/main",
-        "rev": "e1cf16a0ee90ee406d96eb2c784ecce96738d2a0",
-        "revCount": 15,
-        "type": "git",
-        "url": "https://git.katja.wtf/website"
-      },
-      "original": {
-        "type": "git",
-        "url": "https://git.katja.wtf/website"
-      }
-    },
     "deploy-rs": {
       "inputs": {
         "flake-compat": [

@@ -875,7 +855,6 @@
     },
     "root": {
       "inputs": {
-        "ctucxWebsite": "ctucxWebsite",
         "deploy-rs": "deploy-rs",
         "disko": "disko",
         "diskoUnstable": "diskoUnstable",

@@ -902,7 +881,8 @@
         "simpleNixosMailserver": "simpleNixosMailserver",
         "sopsNix": "sopsNix",
         "stagit": "stagit",
-        "things": "things"
+        "things": "things",
+        "zaphyraWebsite": "zaphyraWebsite"
       }
     },
     "rust-analyzer-src": {

@@ -1047,6 +1027,26 @@
         "type": "git",
         "url": "https://git.zaphyra.eu/things"
       }
+    },
+    "zaphyraWebsite": {
+      "inputs": {
+        "nixpkgs": [
+          "nixpkgs"
+        ]
+      },
+      "locked": {
+        "lastModified": 1748356139,
+        "narHash": "sha256-wsnbqz4f0I7ANQEM0D3LnDAk1KlCUCN9oVxQk4GHRBU=",
+        "ref": "refs/heads/main",
+        "rev": "7f409625cceea603e5f70fc4411898d58c72bd2d",
+        "revCount": 16,
+        "type": "git",
+        "url": "https://git.zaphyra.eu/website"
+      },
+      "original": {
+        "type": "git",
+        "url": "https://git.zaphyra.eu/website"
+      }
     }
   },
   "root": "root",
diff --git a/flake.nix b/flake.nix
@@ -78,7 +78,7 @@
               nixpkgs.overlays = [
                 inputs.self.overlays.packages
                 inputs.self.overlays.nixpkgsUnstable
-                inputs.ctucxWebsite.overlays.default
+                inputs.zaphyraWebsite.overlays.default
                 inputs.stagit.overlays.default
                 inputs.flauschehornSexy.overlays.default
                 inputs.gpxMap.overlays.default

@@ -199,8 +199,8 @@
       flake-utils.follows = "flakeUtils";
     };
 
-    ctucxWebsite.url = "git+https://git.katja.wtf/website";
-    ctucxWebsite.inputs.nixpkgs.follows = "nixpkgs";
+    zaphyraWebsite.url = "git+https://git.zaphyra.eu/website";
+    zaphyraWebsite.inputs.nixpkgs.follows = "nixpkgs";
 
     stagit.url = "git+https://git.zaphyra.eu/stagit";
     stagit.inputs.nixpkgs.follows = "nixpkgs";