Update users.nix

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

View file

@ -1,3 +1,7 @@
# users.nix
{ config, pkgs, lib, ... }:
{
# Define a user account. Don't forget to set a password with passwd.
users.users.fred = {
isNormalUser = true;
@ -8,3 +12,4 @@ users.users.fred = {
fastfetch
];
};
}