Compare commits

..

2 commits

Author SHA1 Message Date
9f792774a5 feat(nix): enable GNOME remote desktop and update flake lock
- Enabled `services.gnome.gnome-remote-desktop` in the `x1` configuration.
- Removed an unused `lib` parameter in the `forgejo.nix` module.
- Updated the `home-manager` source in the `flake.lock` file with the latest revision and hash.
2025-12-03 09:44:16 +01:00
62f1eb0a2d Update forgejo-runner package reference
Switched from `forgejo-actions-runner` to `forgejo-runner` package for the gitea actions runner instance. This aligns with the updated package naming convention in the system configuration. The change ensures proper integration with the forgejo ecosystem and maintains consistency with the project's package structure.
2025-12-03 09:43:59 +01:00
4 changed files with 6 additions and 8 deletions

6
flake.lock generated
View file

@ -370,11 +370,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1764613336, "lastModified": 1764736872,
"narHash": "sha256-L979az28t/+SXvYw9qhOno5HLlDwkZOpz6LzCLnjmRM=", "narHash": "sha256-4mqLegNQeD54X7enm6EI9aNWl6CaIfyhl5PaYoGYwqk=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "f3902b5d8767985680875ad86d028371100faeb3", "rev": "3366918730bb6b699395a9d237397f1d710a94b3",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -1,5 +1,4 @@
{ {
options,
config, config,
pkgs, pkgs,
lib, lib,
@ -52,7 +51,7 @@ in
nix-output-monitor nix-output-monitor
]; ];
systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp"; #systemd.services.nix-daemon.environment.TMPDIR = "/var/tmp";
nix = nix =
let let
@ -68,7 +67,6 @@ in
settings = { settings = {
experimental-features = "nix-command flakes"; experimental-features = "nix-command flakes";
build-dir = "/var/tmp";
http-connections = 50; http-connections = 50;
warn-dirty = false; warn-dirty = false;
log-lines = 50; log-lines = 50;

View file

@ -1,6 +1,5 @@
{ {
pkgs, pkgs,
lib,
config, config,
... ...
}: }:
@ -44,7 +43,7 @@
}; };
services.gitea-actions-runner = { services.gitea-actions-runner = {
package = pkgs.forgejo-actions-runner; package = pkgs.forgejo-runner;
instances.default = { instances.default = {
enable = true; enable = true;
name = "base"; name = "base";

View file

@ -12,6 +12,7 @@ with lib.metacfg;
]; ];
services.rustdesk-server.signal.enable = false; services.rustdesk-server.signal.enable = false;
services.gnome.gnome-remote-desktop.enable = true;
services.tailscale.enable = true; services.tailscale.enable = true;