Compare commits

..

No commits in common. "6ab024a2c5b91c7a3ed05c444d60f2d46bb64139" and "7d7f6f44073f06c16d9722a78f6fe7e02ed1ad04" have entirely different histories.

4 changed files with 2 additions and 34 deletions

View file

@ -4,7 +4,7 @@ _: {
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
systemd.enable = true; systemdIntegration = true;
xwayland.enable = true; xwayland.enable = true;
}; };
services.wlsunset = { services.wlsunset = {

View file

@ -9,7 +9,7 @@
enable = true; enable = true;
stateDir = "/var/lib/forgejo"; stateDir = "/var/lib/forgejo";
settings = { settings = {
service.DISABLE_REGISTRATION = true; service.DISABLE_REGISTRATION = false;
DEFAULT.APP_NAME = "forgejo"; DEFAULT.APP_NAME = "forgejo";
log.LEVEL = "Debug"; log.LEVEL = "Debug";
ui = { ui = {
@ -34,9 +34,6 @@
session = { session = {
COOKIE_SECURE = true; COOKIE_SECURE = true;
}; };
security = {
LOGIN_REMEMBER_DAYS = 14;
};
database = { database = {
DB_TYPE = lib.mkForce "postgres"; DB_TYPE = lib.mkForce "postgres";
HOST = "192.168.1.211:5432"; HOST = "192.168.1.211:5432";

View file

@ -27,8 +27,6 @@
"/home/*/.factorio" "/home/*/.factorio"
"/home/*/.mplayer" "/home/*/.mplayer"
"/home/*/.steam" "/home/*/.steam"
"/home/*/.eclipse"
"/home/*/.bundle"
"/home/*/.local/share/Trash" "/home/*/.local/share/Trash"
"/home/*/.local/share/Steam" "/home/*/.local/share/Steam"
"/home/*/.local/share/.var" "/home/*/.local/share/.var"
@ -43,8 +41,6 @@
passwordFile = config.sops.secrets.restic-repo-pwd.path; passwordFile = config.sops.secrets.restic-repo-pwd.path;
timerConfig = { timerConfig = {
OnCalendar = "daily"; OnCalendar = "daily";
RandomizedDelaySec = "10m";
Persistent = true;
}; };
}; };
}; };

View file

@ -53,30 +53,5 @@
gitMinimal gitMinimal
]; ];
}; };
instances.nixgarden = {
settings = {
container = {
network = "host";
};
};
enable = true;
name = config.networking.hostName;
token = "ufM3x5MANdcIg9qb7LTJrC7dAi9Kw6DmVXDDX3HL";
url = "https://git.flake.sh";
labels = [
"debian-latest:docker://node:18-bullseye"
"ubuntu-latest:docker://node:18-bullseye"
#"native:host"
];
hostPackages = with pkgs; [
bash
curl
coreutils
wget
gitMinimal
python3
python311Packages.pip
];
};
}; };
} }