my NixOS and nix-darwin config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

added suri user

+9 -6
+9 -6
hosts/Khaos/configuration.nix
··· 138 138 # }; 139 139 140 140 # # Define a user account. Don't forget to set a password with ‘passwd’. 141 - # users.users.suri = { 142 - # isNormalUser = true; 143 - # description = "suri"; 144 - # extraGroups = [ "networkmanager" "wheel" ]; 145 - # packages = with pkgs; [ ]; 146 - # }; 141 + users.users.suri = { 142 + isNormalUser = true; 143 + description = "suri"; 144 + extraGroups = [ 145 + "networkmanager" 146 + "wheel" 147 + ]; 148 + packages = with pkgs; [ ]; 149 + }; 147 150 # Open ports in the firewall. 148 151 networking.firewall.allowedTCPPorts = [ 22 ]; 149 152