Add runners to gitea
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user