From a1dee56cce3b781bdecb58a34824914c8b44ba4e Mon Sep 17 00:00:00 2001 From: Joakim Repomaa Date: Fri, 14 Mar 2025 14:05:51 +0200 Subject: [PATCH] radish: switch uids of jokke and moco users --- hosts/radish/users.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/radish/users.nix b/hosts/radish/users.nix index 9a9b3bc..98bc001 100644 --- a/hosts/radish/users.nix +++ b/hosts/radish/users.nix @@ -2,12 +2,14 @@ { # Define a user account. Don't forget to set a password with ‘passwd’. users.users.jokke = { + uid = 1001; isNormalUser = true; extraGroups = [ "wheel" ]; shell = pkgs.zsh; }; users.users.moco = { + uid = 1000; isNormalUser = true; extraGroups = [ "wheel" ]; shell = pkgs.zsh;