omniflake/system/alt.nix
2023-12-15 19:32:50 +01:00

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 = {};
}