From 85a14cf3033b10c9ba99ced032018ca88ea31b5f Mon Sep 17 00:00:00 2001 From: Sakooooo <78461130+Sakooooo@users.noreply.github.com> Date: Tue, 31 Dec 2024 16:46:43 +0400 Subject: [PATCH] forgot to add the users award --- hosts/sakoserver/configuration.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/sakoserver/configuration.nix b/hosts/sakoserver/configuration.nix index 2c1fcb5c..23d693c8 100644 --- a/hosts/sakoserver/configuration.nix +++ b/hosts/sakoserver/configuration.nix @@ -25,8 +25,19 @@ }; }; + users.users.sako = { + isNormalUser = true; + extraGroups = [ "wheel" ]; + }; + + environment.systemPackages = with pkgs; [ neovim wget ]; + + # networking.firewall.allowedTCPPorts = []; + # networking.firewall.allowedUDPPorts = []; + void = { server = { isServer = true; }; }; + # https://nixos.org/manual/nixos/stable/#sec-upgrading # don't change this pls ty ily thanks system.stateVersion = "24.11"; }