commit f71b96780c0f908314c797ca2efce505d4a24328
parent 5367ca5949ef6ab161aae14e67fa59384a4aaffc
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 17 Jun 2026 00:14:15 +0200
parent 5367ca5949ef6ab161aae14e67fa59384a4aaffc
Author: Katja Ramona Sophie Kwast (zaphyra) <git@zaphyra.eu>
Date: Wed, 17 Jun 2026 00:14:15 +0200
cleanup of some stuff
6 files changed, 7 insertions(+), 23 deletions(-)
diff --git a/machines/default.nix b/machines/default.nix @@ -14,7 +14,7 @@ # drop "default.nix" from the list (builtins.filter (name: name != "default.nix")) # convert each list-element containing its file-name to an element containing the file's content - (builtins.map (name: { + (map (name: { # remove '.nix' suffix name = lib.removeSuffix ".nix" name; value = import ./${name};
diff --git a/nixosModules/common/configure/boot.nix b/nixosModules/common/configure/boot.nix @@ -45,6 +45,7 @@ in grub.enable = false; systemd-boot = { enable = lib.mkDefault true; + consoleMode = "max"; inherit (cfg) configurationLimit; }; efi = {
diff --git a/nixosModules/common/configure/primaryNetworkInterface.nix b/nixosModules/common/configure/primaryNetworkInterface.nix @@ -70,7 +70,7 @@ in config = lib.mkIf cfg.enable { systemd.network = { networks = { - "5-primaryInterface" = { + "05-primaryInterface" = { enable = true; name = cfg.interfaceName; networkConfig = {
diff --git a/nixosModules/zpha/configure/netcupTunnel.nix b/nixosModules/zpha/configure/netcupTunnel.nix @@ -96,7 +96,7 @@ in }; networks = { - "5-primaryInterface" = lib.mkIf (config.networking.hostName == "sorrah") { + "05-primaryInterface" = lib.mkIf (config.networking.hostName == "sorrah") { networkConfig = { IPv6ProxyNDP = true; IPv6ProxyNDPAddress = lib.pipe config.systemd.network.netdevs."15-wg-netcup".wireguardPeers [
diff --git a/npins/sources.json b/npins/sources.json @@ -1,22 +1,5 @@ { "pins": { - "continuwuity": { - "type": "GitRelease", - "repository": { - "type": "Forgejo", - "server": "https://forgejo.ellis.link/", - "owner": "continuwuation", - "repo": "continuwuity" - }, - "pre_releases": false, - "version_upper_bound": null, - "release_prefix": null, - "submodules": false, - "version": "v0.5.9", - "revision": "f668b4a64be61373d2f7d2be96917457558b962c", - "url": "https://forgejo.ellis.link/api/v1/repos/continuwuation/continuwuity/archive/v0.5.9.tar.gz", - "hash": "sha256-4zs26kTqwkJV7x+Sm12LnR02bbyH0f6Itbz7bDKUyts=" - }, "dnsNix": { "type": "Git", "repository": { @@ -118,7 +101,7 @@ "type": "Git", "repository": { "type": "Forgejo", - "server": "https://codeberg.org/", + "server": "https://codeberg.org", "owner": "BANanaD3V", "repo": "niri-nix" },
diff --git a/packages/setupDisk/package.nix b/packages/setupDisk/package.nix @@ -10,7 +10,7 @@ if systemConfig != null then writeShellApplication { - name = "setup-disk-${systemConfig.networking.hostName}"; + name = "setupDisk-${systemConfig.networking.hostName}"; runtimeInputs = [ btrfs-progs parted @@ -105,4 +105,4 @@ if systemConfig != null then ''; } else - writeScriptBin "setup-disk-none" "echo 'No system config given!'" + writeScriptBin "setupDisk-none" "echo 'No system config given!'"