nixos/settings/users.nix

16 lines
309 B
Nix
Raw Normal View History

2025-12-03 16:14:51 +00:00
# users.nix
{ config, pkgs, lib, ... }:
{
2025-12-03 16:14:23 +00:00
# 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
];
};
2025-12-03 16:14:51 +00:00
}