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 = {
|
||||
enable = true;
|
||||
systemdIntegration = true;
|
||||
systemd.enable = true;
|
||||
xwayland.enable = true;
|
||||
};
|
||||
services.wlsunset = {
|
||||
|
|
|
@ -9,7 +9,7 @@
|
|||
enable = true;
|
||||
stateDir = "/var/lib/forgejo";
|
||||
settings = {
|
||||
service.DISABLE_REGISTRATION = false;
|
||||
service.DISABLE_REGISTRATION = true;
|
||||
DEFAULT.APP_NAME = "forgejo";
|
||||
log.LEVEL = "Debug";
|
||||
ui = {
|
||||
|
@ -34,6 +34,9 @@
|
|||
session = {
|
||||
COOKIE_SECURE = true;
|
||||
};
|
||||
security = {
|
||||
LOGIN_REMEMBER_DAYS = 14;
|
||||
};
|
||||
database = {
|
||||
DB_TYPE = lib.mkForce "postgres";
|
||||
HOST = "192.168.1.211:5432";
|
||||
|
|
|
@ -27,6 +27,8 @@
|
|||
"/home/*/.factorio"
|
||||
"/home/*/.mplayer"
|
||||
"/home/*/.steam"
|
||||
"/home/*/.eclipse"
|
||||
"/home/*/.bundle"
|
||||
"/home/*/.local/share/Trash"
|
||||
"/home/*/.local/share/Steam"
|
||||
"/home/*/.local/share/.var"
|
||||
|
@ -41,6 +43,8 @@
|
|||
passwordFile = config.sops.secrets.restic-repo-pwd.path;
|
||||
timerConfig = {
|
||||
OnCalendar = "daily";
|
||||
RandomizedDelaySec = "10m";
|
||||
Persistent = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
@ -53,5 +53,30 @@
|
|||
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