mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 09:44:08 -05:00
15 lines
347 B
Nix
15 lines
347 B
Nix
{ lib, config, pkgs, ...}: {
|
|
users.users.crow = {
|
|
isNormalUser = true;
|
|
extraGroups = [ "wheel" "networkmanager" ];
|
|
};
|
|
|
|
home-manager.users.crow = {
|
|
home.username = "crow";
|
|
home.homeDirectory = "/home/crow";
|
|
|
|
home.stateVersion = "24.05";
|
|
|
|
programs.home-manager.enable = true;
|
|
};
|
|
}
|