waffentrager: init

This commit is contained in:
2026-06-24 00:06:21 +02:00
parent 29adb6e6b0
commit fb653eb0f4
30 changed files with 1325 additions and 11 deletions
+1 -2
View File
@@ -1,7 +1,6 @@
{
pkgs,
lib,
materusArgs,
mkk,
...
}:
@@ -83,7 +82,7 @@
ssh = {
enable = true;
port = 22;
authorizedKeyFiles = [ materusArgs.files.ssh-keys.materus ];
authorizedKeyFiles = [ mkk.files.ssh-keys.materus ];
hostKeys = [
"/mkk/keys/ssh_host_ed25519_key"
"/mkk/keys/ssh_host_rsa_key"
+2 -2
View File
@@ -6,13 +6,13 @@
config,
lib,
pkgs,
materusArgs,
mkk,
...
}:
let
patchedBwrap = pkgs.bubblewrap.overrideAttrs (o: {
patches = (o.patches or [ ]) ++ [
materusArgs.files.patches.bwrap
mkk.files.patches.bwrap
];
});
in
@@ -1,6 +1,5 @@
{
pkgs,
materusArgs,
config,
lib,
...