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

14 lines
223 B
Nix

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