fixing stuff
This commit is contained in:
parent
3ce7d0cdc5
commit
5f3f5e8392
5 changed files with 8 additions and 26 deletions
12
flake.nix
12
flake.nix
|
@ -312,8 +312,8 @@
|
|||
|
||||
sternchen = clanSetup {
|
||||
name = "sternchen";
|
||||
#host = "sternchen.bear";
|
||||
host = "192.168.178.25";
|
||||
host = "sternchen.bear";
|
||||
#host = "192.168.178.25";
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.lenovo-thinkpad-x220
|
||||
homeManagerModules
|
||||
|
@ -361,8 +361,8 @@
|
|||
|
||||
cherry = clanSetup {
|
||||
name = "cherry";
|
||||
host = "cherry";
|
||||
#host = "cherry.bear";
|
||||
#host = "cherry";
|
||||
host = "cherry.bear";
|
||||
#host = "cherry.private";
|
||||
modules = [
|
||||
nixos-hardware.nixosModules.framework-13th-gen-intel
|
||||
|
@ -403,9 +403,9 @@
|
|||
|
||||
orbi = clanSetup {
|
||||
name = "orbi";
|
||||
#host = "orbi.bear";
|
||||
host = "orbi.bear";
|
||||
#host = "orbi.private";
|
||||
host = "95.216.66.212";
|
||||
#host = "95.216.66.212";
|
||||
modules = [
|
||||
{
|
||||
clan.networking.zerotier.controller = {
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs, config, ... }:
|
||||
{ pkgs, config, factsGenerator, ... }:
|
||||
{
|
||||
networking.firewall.allowedUDPPorts = [ 51820 ];
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ config, ... }:
|
||||
{ config, factsGenerator, ... }:
|
||||
{
|
||||
|
||||
clanCore.facts.services.s3 = factsGenerator.password { name = "root"; service = "s3"; };
|
||||
|
|
|
@ -7,25 +7,7 @@
|
|||
./defaults.nix
|
||||
./grub.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?
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue