diff --git a/system/common/me.nix b/system/common/me.nix index 5e82c49..0ece4af 100644 --- a/system/common/me.nix +++ b/system/common/me.nix @@ -9,6 +9,8 @@ in config = lib.mkIf cfg.enable { users.users.nullbite = { + uid = 1000; + group = "nullbite"; isNormalUser = true; extraGroups = [ "wheel" ] ++ lib.optional config.nixfiles.packageSets.fun.enable "input"; packages = with pkgs; [ @@ -18,6 +20,8 @@ in shell = pkgs.zsh; }; + users.groups.nullbite.gid = 1000; + # shell config programs.zsh.enable = true; programs.fzf = {