added aqore-nix & changed nginx settings ebat ego v rot

This commit is contained in:
emptyynes 2025-09-24 16:59:35 +07:00
parent 032a5f4b04
commit 7e2f7a341a
24 changed files with 573 additions and 90 deletions

View file

@ -0,0 +1,23 @@
{ config, pkgs, ... }:
{
users.groups.remote = {};
users.users = {
almiriqi = {
isNormalUser = true;
description = "Almiriq!Iwasaki";
extraGroups = [ "wheel" ];
initialPassword = "iqirimla";
};
maria = {
isNormalUser = true;
description = "Maria Arusu";
extraGroups = [ "wheel" "remote" ];
initialPassword = "airam";
};
root = {
initialPassword = "toor";
};
};
}