Removed justfile

This commit is contained in:
2025-10-02 16:11:18 +03:00
parent 43d95fd885
commit 26d2aa6503
3 changed files with 11 additions and 51 deletions

View File

@@ -1,15 +1,19 @@
{ config, pkgs, lib, ...}:
{
users.users.boxuser = {
config,
pkgs,
lib,
...
}: {
users.users.boxuser = {
isNormalUser = true;
group = "boxuser";
extraGroups = ["wheel" "docker" "networkmanager"]; # Enable sudo for the user.
hashedPassword = "$6$Gk6L21XBSf.YbfU1$eadMLbwvAgudTjPOLCsZfRNxfGptARnAazhs0xz/GcNEYGQS/GjLov/jJsHnPIKBNIPQJEG4XhZ3K097bfi1c1";
packages = with pkgs; [
fastfetch
fastfetch
];
};
users.users.boxuser.shell = pkgs.bash;
users.groups.boxuser = {};
users.users.boxuser.shell = pkgs.bash;
users.groups.boxuser = {};
}