guest
This commit is contained in:
parent
9f74d8a293
commit
329853591d
2 changed files with 16 additions and 2 deletions
|
|
@ -2,10 +2,10 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
users.users.alt = {
|
users.users.alt = {
|
||||||
home = "/home/guest";
|
home = "/home/alt";
|
||||||
isSystemUser = true;
|
isSystemUser = true;
|
||||||
group = "users";
|
group = "users";
|
||||||
description = "Guest";
|
description = "Alt";
|
||||||
extraGroups = [
|
extraGroups = [
|
||||||
"networkmanager"
|
"networkmanager"
|
||||||
];
|
];
|
||||||
|
|
|
||||||
14
system/guest.nix
Normal file
14
system/guest.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
||||||
|
{ config, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
users.users.guest = {
|
||||||
|
home = "/home/guest";
|
||||||
|
isSystemUser = true;
|
||||||
|
group = "users";
|
||||||
|
description = "Guest";
|
||||||
|
extraGroups = [
|
||||||
|
"networkmanager"
|
||||||
|
];
|
||||||
|
shell = pkgs.fish;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue