mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
22 lines
496 B
Nix
22 lines
496 B
Nix
# This is the user that is often used for servers.
|
|
{ lib, pkgs, ... }:
|
|
|
|
{
|
|
users.users.plover = {
|
|
hashedPassword = "$6$gpgBrL3.RAGa9NBp$93Ac5ZW53KcgbA9q4awVKA.bVArP7Hw1NbyakT30Mav.7obIuN17WWijT.EaBSJU6ArvdXTehC3xZ9/9oZPDR0";
|
|
extraGroups = [ "wheel" ];
|
|
useDefaultShell = true;
|
|
isNormalUser = true;
|
|
description = "The go-to user for server systems.";
|
|
|
|
packages = with pkgs; [
|
|
wireshark-cli
|
|
bind.dnsutils
|
|
nettools
|
|
bat
|
|
fd
|
|
jq
|
|
];
|
|
};
|
|
}
|