omniflake/system/alt.nix
2025-01-19 13:32:33 +01:00

14 lines
227 B
Nix

{ config, pkgs, ... }:
{
users.users.alt = {
home = "/home/guest";
isSystemUser = true;
group = "users";
description = "Guest";
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
}