properly set up retiolum
This commit is contained in:
parent
eef2f2bb8b
commit
c16df33d29
3 changed files with 30 additions and 1 deletions
|
@ -360,9 +360,10 @@
|
||||||
host = "cherry.bear";
|
host = "cherry.bear";
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.framework-13th-gen-intel
|
nixos-hardware.nixosModules.framework-13th-gen-intel
|
||||||
|
retiolum.nixosModules.retiolum
|
||||||
|
private_assets.nixosModules.yubikey
|
||||||
homeManagerModules
|
homeManagerModules
|
||||||
stylixModules
|
stylixModules
|
||||||
private_assets.nixosModules.yubikey
|
|
||||||
{ home-manager.users.mainUser.gui.enable = true; }
|
{ home-manager.users.mainUser.gui.enable = true; }
|
||||||
{
|
{
|
||||||
home-manager.users.mainUser = import ./homes/palo;
|
home-manager.users.mainUser = import ./homes/palo;
|
||||||
|
|
|
@ -12,6 +12,7 @@
|
||||||
./qemu.nix
|
./qemu.nix
|
||||||
|
|
||||||
./network-tinc.nix
|
./network-tinc.nix
|
||||||
|
./network-tinc_retiolum.nix
|
||||||
./network-wireguard.nix
|
./network-wireguard.nix
|
||||||
|
|
||||||
./37c3.nix
|
./37c3.nix
|
||||||
|
|
27
machines/cherry/network-tinc_retiolum.nix
Normal file
27
machines/cherry/network-tinc_retiolum.nix
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
{ config, factsGenerator, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
clanCore.facts.services.tinc_retiolum = factsGenerator.tinc { name = "retiolum"; };
|
||||||
|
|
||||||
|
networking.retiolum.port = 720;
|
||||||
|
networking.retiolum.nodename = "cherry";
|
||||||
|
|
||||||
|
services.tinc.networks.retiolum = {
|
||||||
|
ed25519PrivateKeyFile = config.clanCore.facts.services.tinc_retiolum.secret."tinc.retiolum.ed25519_key.priv".path;
|
||||||
|
rsaPrivateKeyFile = config.clanCore.facts.services.tinc_retiolum.secret."tinc.retiolum.rsa_key.priv".path;
|
||||||
|
};
|
||||||
|
|
||||||
|
#fileSystems."/retiolum/sicily" = {
|
||||||
|
# device = "//sicily.r/tonne";
|
||||||
|
# fsType = "cifs";
|
||||||
|
# options = [
|
||||||
|
# "guest"
|
||||||
|
# "nofail"
|
||||||
|
# "noauto"
|
||||||
|
# "ro"
|
||||||
|
# "rsize=16777216"
|
||||||
|
# "cache=loose"
|
||||||
|
# "x-systemd.after=network.target"
|
||||||
|
# ];
|
||||||
|
#};
|
||||||
|
}
|
Loading…
Reference in a new issue