This commit is contained in:
Till 2024-01-13 12:50:34 +01:00
parent 083a00873f
commit bbe9e68601
4 changed files with 15 additions and 15 deletions

View file

@ -5,7 +5,7 @@
home = "/home/alt";
isSystemUser = true;
group = "users";
description = "Backup profile";
description = "Alt";
extraGroups = [
"networkmanager"
];

11
system/lisa.nix Normal file
View file

@ -0,0 +1,11 @@
{ config, pkgs, ... }:
{
users.users.lisa = {
isNormalUser = true;
description = "Lisa";
extraGroups = [
"networkmanager"
];
};
}