push
This commit is contained in:
@@ -2,4 +2,4 @@
|
|||||||
# Do not delete.
|
# Do not delete.
|
||||||
|
|
||||||
folderID: nix
|
folderID: nix
|
||||||
created: 2026-01-29T23:05:44-06:00
|
created: 2026-01-29T23:06:32-06:00
|
||||||
|
|||||||
@@ -2,14 +2,14 @@
|
|||||||
den.aspects.crab-hole = {
|
den.aspects.crab-hole = {
|
||||||
nixos = { ... }: {
|
nixos = { ... }: {
|
||||||
services.crab-hole = {
|
services.crab-hole = {
|
||||||
enable = true;
|
enable = false;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
blocklist = {
|
blocklist = {
|
||||||
include_subdomains = true;
|
include_subdomains = true;
|
||||||
lists = [
|
lists = [
|
||||||
#"https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts"
|
"https://raw.githubusercontent.com/StevenBlack/hosts/master/alternates/fakenews-gambling-porn/hosts"
|
||||||
#"https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt"
|
"https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -34,6 +34,12 @@
|
|||||||
|
|
||||||
hashedPasswordFile = "/home/bug/users/levi.passwd";
|
hashedPasswordFile = "/home/bug/users/levi.passwd";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
fileSystems."/home" = {
|
||||||
|
device = "/dev/disk/by-uuid/30f357aa-fc86-4bcd-bed7-c91fc8afbdbc";
|
||||||
|
fsType = "ext4";
|
||||||
|
options = [ "defaults" "noatime" ];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,22 +9,6 @@
|
|||||||
|
|
||||||
janitor
|
janitor
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
cloudflared
|
|
||||||
|
|
||||||
portmap
|
|
||||||
searxng
|
|
||||||
copyparty
|
|
||||||
# glances
|
|
||||||
invidious
|
|
||||||
mailserver
|
|
||||||
# matrix
|
|
||||||
# redlib
|
|
||||||
# sish
|
|
||||||
# vscode-server
|
|
||||||
gitea
|
|
||||||
|
|
||||||
ollama
|
ollama
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@
|
|||||||
|
|
||||||
volumes = {
|
volumes = {
|
||||||
"/" = {
|
"/" = {
|
||||||
path = "/srv/copyparty";
|
path = "/home/copyparty";
|
||||||
|
|
||||||
access = {
|
access = {
|
||||||
r = "*";
|
r = "*";
|
||||||
@@ -58,19 +58,6 @@
|
|||||||
scan = 60;
|
scan = 60;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
/* "/sang" = {
|
|
||||||
path = "/srv/sang";
|
|
||||||
|
|
||||||
access = {
|
|
||||||
rw = [ "bug" ]; #"sang" ];
|
|
||||||
};
|
|
||||||
|
|
||||||
flags = {
|
|
||||||
fk = 4;
|
|
||||||
scan = 60;
|
|
||||||
};
|
|
||||||
}; */
|
|
||||||
};
|
};
|
||||||
|
|
||||||
openFilesLimit = 8192;
|
openFilesLimit = 8192;
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
nixos = { pkgs, config, ... }: let
|
nixos = { pkgs, config, ... }: let
|
||||||
companionPort = 8282;
|
companionPort = 8282;
|
||||||
companionPath = "/companion";
|
companionPath = "/companion";
|
||||||
companionKey = "kKg3RKeZjE7frmvw";
|
companionKey = "kKg3RKeZjE7frmvr";
|
||||||
port = config.den.portmap.tube;
|
port = config.den.portmap.tube;
|
||||||
in {
|
in {
|
||||||
den.tunnels = [ "tube" ];
|
den.tunnels = [ "tube" ];
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
(fetchTarball {
|
(fetchTarball {
|
||||||
url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/master.tar.gz";
|
url = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/archive/master.tar.gz";
|
||||||
sha256 = "0j3q1i80zcb94ylivyyqfid4h2js1dycf0fa6y5gdbr48ldgz3nb";
|
sha256 = "0bw68h902j6cz4nshzd9iy2c6slg91026l3gydkgj4d7amsjvmg4";
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|||||||
9
modules/software/gaming/emulators.nix
Normal file
9
modules/software/gaming/emulators.nix
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{ ... }: {
|
||||||
|
den.aspects.emulators = {
|
||||||
|
nixos = { pkgs, ... }: {
|
||||||
|
users.users.bug.packages = with pkgs; [
|
||||||
|
ppsspp
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{ den, ... }: {
|
{ den, ... }: {
|
||||||
den.aspects.gaming = {
|
den.aspects.gaming = {
|
||||||
includes = with den.aspects; [ steam roblox hytale polytoria game-tools ];
|
includes = with den.aspects; [ steam roblox hytale polytoria game-tools emulators ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
services.ollama = {
|
services.ollama = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
||||||
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b" ];
|
loadModels = [ "llama3.2:3b" "deepseek-r1:1.5b" "deepseek-r1:8b" "qwen2.5-coder:7b" "qwen3.5:9b" "aratan/qwen3.5-agent-multimodal:9b" "qwen3-coder:30b" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user