This commit is contained in:
Till 2025-01-19 13:33:54 +01:00
parent 9f74d8a293
commit 329853591d
2 changed files with 16 additions and 2 deletions

14
system/guest.nix Normal file
View file

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
users.users.guest = {
home = "/home/guest";
isSystemUser = true;
group = "users";
description = "Guest";
extraGroups = [
"networkmanager"
];
shell = pkgs.fish;
};
}