15 lines
246 B
Nix
15 lines
246 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.alt = {
|
|
isSystemUser = true;
|
|
description = "Alt";
|
|
extraGroups = [
|
|
"networkmanager"
|
|
];
|
|
shell = pkgs.fish;
|
|
group = "alt";
|
|
home = "/home/alt";
|
|
};
|
|
users.groups.alt = {};
|
|
}
|