Compare commits

..

No commits in common. "c4adbb05dd265f433a3dab469f7f99a798fb1e9d" and "689b8fb50fbb093e9b636110cad32f5ab717ab51" have entirely different histories.

6 changed files with 8 additions and 28 deletions

View file

@ -23,6 +23,11 @@
fsType = "vfat"; fsType = "vfat";
}; };
fileSystems."/nas" = {
device = "192.168.1.199:/mnt/Sutoreji/ame";
fsType = "nfs";
};
swapDevices = [ swapDevices = [
{device = "/dev/disk/by-uuid/4f69ab31-f6a9-4799-92f1-5abbe0dc9180";} {device = "/dev/disk/by-uuid/4f69ab31-f6a9-4799-92f1-5abbe0dc9180";}
]; ];

View file

@ -1,7 +1,6 @@
{pkgs, ...}: { {pkgs, ...}: {
imports = [ imports = [
../../home ../../home
../../home/firefox
../../home/wezterm ../../home/wezterm
../../home/zathura ../../home/zathura
../../home/zellij ../../home/zellij
@ -16,6 +15,7 @@
username = "notoh"; username = "notoh";
homeDirectory = "/home/notoh"; homeDirectory = "/home/notoh";
packages = with pkgs; [ packages = with pkgs; [
floorp
discord discord
spotify-player spotify-player
cinny-desktop cinny-desktop

View file

@ -1,7 +1,7 @@
_: { _: {
networking = { networking = {
networkmanager.enable = true; networkmanager.enable = true;
nameservers = ["192.168.1.103"]; nameservers = ["192.168.1.221"];
firewall = { firewall = {
enable = true; enable = true;
}; };

View file

@ -7,7 +7,6 @@
./attic.nix ./attic.nix
./tailscale.nix ./tailscale.nix
./croc.nix ./croc.nix
./terraria.nix
# ./factorio.nix # ./factorio.nix
# ./minecraft.nix # ./minecraft.nix
# ./foundryvtt.nix # ./foundryvtt.nix

View file

@ -1,24 +0,0 @@
{...}: {
networking.firewall.allowedTCPPorts = [7777];
virtualisation.oci-containers.containers.terraria = {
image = "jacobsmile/tmodloader1.4:v2023.11.3.3";
ports = ["7777:7777"];
volumes = ["/var/lib/terraria/tmodloader:/data"];
environment = {
TMOD_MOTD = "forsen";
TMOD_PASS = "forsen";
TMOD_AUTOSAVE_INTERVAL = "10";
TMOD_SHUTDOWN_MESSAGE = "Server is shutting down NOW!";
TMOD_AUTODOWNLOAD = "2824688072,2824688266,2669644269,2563309347,2619954303,2687866031,2563851005,2908170107";
TMOD_ENABLEDMODS = "2824688072,2824688266,2669644269,2563309347,2619954303,2687866031,2563851005,2908170107";
TMOD_MAXPLAYERS = "10";
TMOD_WORLDNAME = "forsenv2";
TMOD_WORLDSIZE = "3";
TMOD_DIFFICULTY = "2";
TMOD_NPCSTREAM = "60";
TMOD_WORLDSEED = "random";
TMOD_LANGUAGE = "en-US";
TMOD_UPNP = "1";
};
};
}

View file

@ -1,6 +1,6 @@
_: { _: {
virtualisation.oci-containers.containers.stash = { virtualisation.oci-containers.containers.stash = {
image = "stashapp/stash:v0.24.2"; image = "stashapp/stash:v0.24.1";
environment = { environment = {
STASH_STASH = "/data/"; STASH_STASH = "/data/";
STASH_GENERATED = "/generated/"; STASH_GENERATED = "/generated/";