Create users.nix

This commit is contained in:
ediblerope 2025-12-03 16:14:23 +00:00 committed by GitHub
parent 61537e1ebb
commit e260a4e603
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

10
settings/users.nix Normal file
View file

@ -0,0 +1,10 @@
# Define a user account. Don't forget to set a password with passwd.
users.users.fred = {
isNormalUser = true;
description = "fred";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
bazaar
fastfetch
];
};