My Nix Configuration
2
fork

Configure Feed

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

at dde1eb55cfd2f7b39bcd1a22d74c0e529c4e1071 15 lines 254 B view raw
1{ lib, ... }: 2{ 3 users.users = { 4 pyrox = lib.mkDefault { 5 isNormalUser = true; 6 description = lib.mkDefault "Pyrox"; 7 extraGroups = [ 8 "networkmanager" 9 "wheel" 10 "input" 11 "wireshark" 12 ]; 13 }; 14 }; 15}