parent
c06b0a6e9d
commit
8de70fe92c
9 changed files with 92 additions and 10 deletions
hosts
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ inputs, config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -13,8 +13,14 @@
|
|||
../../virtualisation/podman.nix
|
||||
../../virtualisation/libvirt.nix
|
||||
../../modules/systemdNotify.nix
|
||||
inputs.seven-modules.nixosModules.seven
|
||||
];
|
||||
|
||||
age.secrets.wireguard-seven-cmdframe-key = {
|
||||
file = ../../secrets/wireguard/seven/cmdframe.key.age;
|
||||
owner = "systemd-network";
|
||||
};
|
||||
|
||||
services.fprintd.enable = true;
|
||||
|
||||
programs.zsh.enable = true;
|
||||
|
@ -33,6 +39,17 @@
|
|||
"--operator=felschr"
|
||||
];
|
||||
|
||||
seven = {
|
||||
enable = true;
|
||||
wireguard = {
|
||||
addresses = [
|
||||
"198.18.1.241/15"
|
||||
"fd00:5ec::1f1/48"
|
||||
];
|
||||
privateKeyFile = config.age.secrets.wireguard-seven-cmdframe-key.path;
|
||||
};
|
||||
};
|
||||
|
||||
systemd.notify.enable = true;
|
||||
systemd.notify.method = "libnotify";
|
||||
systemd.notify.libnotify.user = "felschr";
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ lib, ... }:
|
||||
{ inputs, config, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
|
@ -20,8 +20,14 @@
|
|||
../../services/restic/home-pc.nix
|
||||
../../services/pcscd.nix
|
||||
../../services/open-webui.nix
|
||||
inputs.seven-modules.nixosModules.seven
|
||||
];
|
||||
|
||||
age.secrets.wireguard-seven-home-pc-key = {
|
||||
file = ../../secrets/wireguard/seven/home-pc.key.age;
|
||||
owner = "systemd-network";
|
||||
};
|
||||
|
||||
boot.loader.systemd-boot.memtest86.enable = true;
|
||||
|
||||
# running binaries for other architectures
|
||||
|
@ -54,6 +60,17 @@
|
|||
"87.98.162.88" = [ "portcheck.transmissionbt.com" ];
|
||||
};
|
||||
|
||||
seven = {
|
||||
enable = true;
|
||||
wireguard = {
|
||||
addresses = [
|
||||
"198.18.1.239/15"
|
||||
"fd00:5ec::1ef/48"
|
||||
];
|
||||
privateKeyFile = config.age.secrets.wireguard-seven-home-pc-key.path;
|
||||
};
|
||||
};
|
||||
|
||||
systemd.notify.enable = true;
|
||||
systemd.notify.method = "libnotify";
|
||||
systemd.notify.libnotify.user = "felschr";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue