This commit is contained in:
Till 2024-01-13 01:18:44 +01:00
parent ba0a7c40fa
commit 0110817210
2 changed files with 3 additions and 16 deletions

View file

@ -2,9 +2,10 @@
{ {
users.users.alt = { users.users.alt = {
isNormalUser = true; home = "/home/alt";
isSystemUser = true;
group = "users"; group = "users";
description = "Alt"; description = "Backup profile";
extraGroups = [ extraGroups = [
"networkmanager" "networkmanager"
]; ];

View file

@ -1,14 +0,0 @@
{ config, pkgs, ... }:
{
users.users.ishi = {
isNormalUser = true;
uid = 969;
group = "users";
description = "Ishi";
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
}