nixos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

default.nix (193B)


      1 {...}: {
      2 	services.userborn.enable = true;
      3 	users.users.tb148 = {
      4 		isNormalUser = true;
      5 		home = "/home/tb148";
      6 		description = "Toni Brown";
      7 		extraGroups = ["wheel" "boinc" "docker"];
      8 	};
      9 }