omniflake/system/alt.nix
2024-01-13 01:18:44 +01:00

14 lines
234 B
Nix

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