fixing stuff

This commit is contained in:
Ingolf Wagner 2024-06-03 22:01:55 +02:00
parent 3ce7d0cdc5
commit 5f3f5e8392
Signed by: palo
GPG key ID: 76BF5F1928B9618B
5 changed files with 8 additions and 26 deletions

View file

@ -312,8 +312,8 @@
sternchen = clanSetup { sternchen = clanSetup {
name = "sternchen"; name = "sternchen";
#host = "sternchen.bear"; host = "sternchen.bear";
host = "192.168.178.25"; #host = "192.168.178.25";
modules = [ modules = [
nixos-hardware.nixosModules.lenovo-thinkpad-x220 nixos-hardware.nixosModules.lenovo-thinkpad-x220
homeManagerModules homeManagerModules
@ -361,8 +361,8 @@
cherry = clanSetup { cherry = clanSetup {
name = "cherry"; name = "cherry";
host = "cherry"; #host = "cherry";
#host = "cherry.bear"; host = "cherry.bear";
#host = "cherry.private"; #host = "cherry.private";
modules = [ modules = [
nixos-hardware.nixosModules.framework-13th-gen-intel nixos-hardware.nixosModules.framework-13th-gen-intel
@ -403,9 +403,9 @@
orbi = clanSetup { orbi = clanSetup {
name = "orbi"; name = "orbi";
#host = "orbi.bear"; host = "orbi.bear";
#host = "orbi.private"; #host = "orbi.private";
host = "95.216.66.212"; #host = "95.216.66.212";
modules = [ modules = [
{ {
clan.networking.zerotier.controller = { clan.networking.zerotier.controller = {

View file

@ -1,4 +1,4 @@
{ pkgs, config, ... }: { pkgs, config, factsGenerator, ... }:
{ {
networking.firewall.allowedUDPPorts = [ 51820 ]; networking.firewall.allowedUDPPorts = [ 51820 ];

View file

@ -1,4 +1,4 @@
{ config, ... }: { config, factsGenerator, ... }:
{ {
clanCore.facts.services.s3 = factsGenerator.password { name = "root"; service = "s3"; }; clanCore.facts.services.s3 = factsGenerator.password { name = "root"; service = "s3"; };

View file

@ -7,25 +7,7 @@
./defaults.nix ./defaults.nix
./grub.nix ./grub.nix
./packages.nix ./packages.nix
./borg-scripts.nix
]; ];
# default backup excludes
backup.exclude = [ ".git" ".stfolder" ".stversions" ];
# Shell configuration
# -------------------
#programs.custom = {
# bash.enable = true;
# #zsh.enable = true;
#};
# This value determines the NixOS release with which your system is to be
# compatible, in order to avoid breaking some software such as database
# servers. You should change this only after NixOS release notes say you
# should.
#system.stateVersion = lib.mkDefault "19.03"; # Did you read the comment?
} }