Add runners to gitea

This commit is contained in:
nicknase27
2026-07-26 11:51:36 +02:00
parent ffb52393b3
commit 3147023014
4 changed files with 54 additions and 32 deletions
+3 -9
View File
@@ -1,6 +1,4 @@
{
config,
lib,
pkgs,
inputs,
...
@@ -11,27 +9,22 @@
nix.settings.experimental-features = ["nix-command" "flakes"];
nixpkgs.config.allowUnfree = true;
# Use the systemd-boot EFI boot loader.
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
# Use latest kernel.
boot.kernelPackages = pkgs.linuxPackages_latest;
networking.hostName = "Hermes"; # Define your hostname.
networking.hostName = "Hermes";
networking.networkmanager.enable = true;
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
# Set your time zone.
time.timeZone = "Europe/Berlin";
users.users.nick = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = ["wheel"]; # Enable sudo for the user.
packages = with pkgs; [
];
extraGroups = ["wheel"];
};
programs.zsh = {
@@ -54,6 +47,7 @@
yazi
dysk
tmux
btop
];
networking.firewall.enable = false;