users/plover: refactor into user-specific config

This commit is contained in:
Gabriel Arazas 2022-11-25 21:26:48 +08:00
parent b89d9f249c
commit 30e75ebfc7

View File

@ -3,15 +3,13 @@
{ {
users.users.plover = { users.users.plover = {
# Change this immediately pls. hashedPassword = "$6$gpgBrL3.RAGa9NBp$93Ac5ZW53KcgbA9q4awVKA.bVArP7Hw1NbyakT30Mav.7obIuN17WWijT.EaBSJU6ArvdXTehC3xZ9/9oZPDR0";
initialHashedPassword = "$6$gpgBrL3.RAGa9NBp$93Ac5ZW53KcgbA9q4awVKA.bVArP7Hw1NbyakT30Mav.7obIuN17WWijT.EaBSJU6ArvdXTehC3xZ9/9oZPDR0";
extraGroups = [ "wheel" ]; extraGroups = [ "wheel" ];
useDefaultShell = true; useDefaultShell = true;
isNormalUser = true; isNormalUser = true;
description = "The go-to user for server systems."; description = "The go-to user for server systems.";
};
environment.systemPackages = with pkgs; [ packages = with pkgs; [
wireshark-cli wireshark-cli
bind.dnsutils bind.dnsutils
nettools nettools
@ -19,4 +17,5 @@
fd fd
jq jq
]; ];
};
} }