config.nix

This commit is contained in:
Leon Vita 2022-08-07 02:47:42 +01:00
parent 0a7a4715f1
commit a533a648e2
1 changed files with 7 additions and 0 deletions

View File

@ -24,6 +24,13 @@ in
wheelNeedsPassword = false;
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
wget vim python3Full nmap
];
users.users.leon = {
isNormalUser = true;
extraGroups = [ "wheel" ];