still fixing stuff
This commit is contained in:
parent
25424a3726
commit
8f252d321e
3 changed files with 10 additions and 13 deletions
21
flake.nix
21
flake.nix
|
@ -221,6 +221,7 @@
|
||||||
./nixos/assets/ssh/palo_rsa.pub
|
./nixos/assets/ssh/palo_rsa.pub
|
||||||
# backup key
|
# backup key
|
||||||
"${config.clanCore.clanDir}/machines/chungus/facts/ssh.syncoid.id_ed25519.pub"
|
"${config.clanCore.clanDir}/machines/chungus/facts/ssh.syncoid.id_ed25519.pub"
|
||||||
|
"${config.clanCore.clanDir}/machines/chungus/facts/ssh.rbackup.id_ed25519.pub"
|
||||||
];
|
];
|
||||||
})
|
})
|
||||||
# configure nix
|
# configure nix
|
||||||
|
@ -340,7 +341,6 @@
|
||||||
cream = clanSetup {
|
cream = clanSetup {
|
||||||
name = "cream";
|
name = "cream";
|
||||||
host = "cream.bear";
|
host = "cream.bear";
|
||||||
#host = "cream.private";
|
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.framework-12th-gen-intel
|
nixos-hardware.nixosModules.framework-12th-gen-intel
|
||||||
retiolum.nixosModules.retiolum
|
retiolum.nixosModules.retiolum
|
||||||
|
@ -361,9 +361,7 @@
|
||||||
|
|
||||||
cherry = clanSetup {
|
cherry = clanSetup {
|
||||||
name = "cherry";
|
name = "cherry";
|
||||||
#host = "cherry";
|
|
||||||
host = "cherry.bear";
|
host = "cherry.bear";
|
||||||
#host = "cherry.private";
|
|
||||||
modules = [
|
modules = [
|
||||||
nixos-hardware.nixosModules.framework-13th-gen-intel
|
nixos-hardware.nixosModules.framework-13th-gen-intel
|
||||||
homeManagerModules
|
homeManagerModules
|
||||||
|
@ -382,9 +380,15 @@
|
||||||
|
|
||||||
chungus = clanSetup {
|
chungus = clanSetup {
|
||||||
name = "chungus";
|
name = "chungus";
|
||||||
host = "chungus.bear";
|
#host = "chungus.bear";
|
||||||
#host = "chungus.private";
|
host = "chungus";
|
||||||
modules = [
|
modules = [
|
||||||
|
{
|
||||||
|
clan.networking.zerotier.controller = {
|
||||||
|
enable = true;
|
||||||
|
public = false;
|
||||||
|
};
|
||||||
|
}
|
||||||
homeManagerModules
|
homeManagerModules
|
||||||
stylixModules
|
stylixModules
|
||||||
retiolum.nixosModules.retiolum
|
retiolum.nixosModules.retiolum
|
||||||
|
@ -404,15 +408,8 @@
|
||||||
orbi = clanSetup {
|
orbi = clanSetup {
|
||||||
name = "orbi";
|
name = "orbi";
|
||||||
host = "orbi.bear";
|
host = "orbi.bear";
|
||||||
#host = "orbi.private";
|
|
||||||
#host = "95.216.66.212";
|
#host = "95.216.66.212";
|
||||||
modules = [
|
modules = [
|
||||||
{
|
|
||||||
clan.networking.zerotier.controller = {
|
|
||||||
enable = true;
|
|
||||||
public = false;
|
|
||||||
};
|
|
||||||
}
|
|
||||||
homeManagerModules
|
homeManagerModules
|
||||||
stylixModules
|
stylixModules
|
||||||
srvos.nixosModules.hardware-hetzner-online-intel
|
srvos.nixosModules.hardware-hetzner-online-intel
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
19b35f6061699737
|
|
|
@ -24,6 +24,7 @@ with lib; {
|
||||||
};
|
};
|
||||||
|
|
||||||
services.syncthing = {
|
services.syncthing = {
|
||||||
|
enable = lib.mkForce false;
|
||||||
guiAddress = lib.mkDefault "${config.networking.hostName}.${ config.clan.static-hosts.topLevelDomain }:8384";
|
guiAddress = lib.mkDefault "${config.networking.hostName}.${ config.clan.static-hosts.topLevelDomain }:8384";
|
||||||
overrideDevices = lib.mkDefault true;
|
overrideDevices = lib.mkDefault true;
|
||||||
key = "/run/facts/syncthing.key";
|
key = "/run/facts/syncthing.key";
|
||||||
|
|
Loading…
Reference in a new issue