aboutsummaryrefslogtreecommitdiff
path: root/hosts/vps
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/vps')
-rw-r--r--hosts/vps/configuration.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/hosts/vps/configuration.nix b/hosts/vps/configuration.nix
index 7a928a9..3811615 100644
--- a/hosts/vps/configuration.nix
+++ b/hosts/vps/configuration.nix
@@ -1,4 +1,4 @@
-{ pkgs, ... }:
+{ pkgs, username, ... }:
{
imports = [
@@ -17,7 +17,7 @@
users.users.root.hashedPassword = "!";
users.mutableUsers = false;
- users.users.administrator = {
+ users.users.${username} = {
isNormalUser = true;
hashedPassword = "$6$KBblJguEyfEmuWnU$Xf0QqPVacA2qvnzZRpnSE2cmh0kNnMgtVhCrMEDI76buNzuzkuDY6EnO7jPjQlEnoczx6ZPAl2pK.SxezbVa..";
extraGroups = [ "wheel" ];