1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

upgrade to 24.11

This commit is contained in:
2024-12-13 13:42:16 +01:00
parent 3253a217d7
commit 2c6007d404
14 changed files with 244 additions and 145 deletions

View File

@@ -92,7 +92,7 @@ in {
home.username = "xm7234fu";
home.homeDirectory = "/Users/${config.home.username}";
nixpkgs.config.allowUnfree = true;
nix.package = pkgs.nixFlakes;
nix.package = pkgs.nixVersions.stable;
nix.extraOptions = "experimental-features = nix-command flakes";
}

View File

@@ -17,7 +17,7 @@ in {
./nextcloud.nix
./radio-news.nix
./scrabble.nix
./onlyoffice.nix
# ./onlyoffice.nix
./retiolum-map.nix
./tarot.nix
./tt-rss.nix

View File

@@ -1,6 +1,5 @@
{
pkgs,
config,
...
}: {
systemd.services.moinbot = {
@@ -9,7 +8,7 @@
greeting=$(echo "moin
MOIN
moin: gib" | shuf -n1)
echo "$greeting" | ${config.nur.repos.mic92.ircsink}/bin/ircsink \
echo "$greeting" | ${pkgs.nur.repos.mic92.ircsink}/bin/ircsink \
--nick "$greeting""bot" \
--server irc.hackint.org \
--port 6697 \

View File

@@ -71,7 +71,6 @@ in {
hostName = "tabula";
};
sound.enable = true;
hardware.pulseaudio.enable = true;
networking.networkmanager.enable = true;

View File

@@ -42,17 +42,19 @@
enable = true;
securityType = "user";
openFirewall = true;
extraConfig = ''
workgroup = WORKGROUP
server string = zaatar
server role = standalone server
netbios name = zaatar
security = user
hosts allow = 192.168.178. 127.0.0.1 localhost
hosts deny = 0.0.0.0/0
guest account = nobody
map to guest = Bad User
'';
settings = {
global = {
"guest account" = "nobody";
"hosts allow" = ["192.168.178." "127.0.0.1" "localhost"];
"hosts deny" = ["0.0.0.0/0"];
"map to guest" = "Bad User";
"netbios name" = "zaatar";
"security" = "user";
"server role" = "standalone server";
"server string" = "zaatar";
"workgroup" = "WORKGROUP";
};
};
shares.nas = {
path = "/media";
browseable = "yes";