Personal-use NixOS configuration
at main 11 lines 116 B view raw
1{ pkgs, ... }: 2 3{ 4 users.users.career = { 5 isNormalUser = true; 6 7 shell = pkgs.fish; 8 9 uid = 1099; 10 }; 11}