Compare commits
4 commits
7d7f6f4407
...
6ab024a2c5
Author | SHA1 | Date | |
---|---|---|---|
6ab024a2c5 | |||
4ed9d57257 | |||
9cc7a11663 | |||
beb87f47a6 |
4 changed files with 34 additions and 2 deletions
|
@ -4,7 +4,7 @@ _: {
|
||||||
];
|
];
|
||||||
wayland.windowManager.hyprland = {
|
wayland.windowManager.hyprland = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemdIntegration = true;
|
systemd.enable = true;
|
||||||
xwayland.enable = true;
|
xwayland.enable = true;
|
||||||
};
|
};
|
||||||
services.wlsunset = {
|
services.wlsunset = {
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
enable = true;
|
enable = true;
|
||||||
stateDir = "/var/lib/forgejo";
|
stateDir = "/var/lib/forgejo";
|
||||||
settings = {
|
settings = {
|
||||||
service.DISABLE_REGISTRATION = false;
|
service.DISABLE_REGISTRATION = true;
|
||||||
DEFAULT.APP_NAME = "forgejo";
|
DEFAULT.APP_NAME = "forgejo";
|
||||||
log.LEVEL = "Debug";
|
log.LEVEL = "Debug";
|
||||||
ui = {
|
ui = {
|
||||||
|
@ -34,6 +34,9 @@
|
||||||
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";
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
"/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"
|
||||||
|
@ -41,6 +43,8 @@
|
||||||
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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -53,5 +53,30 @@
|
||||||
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
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue