alt
This commit is contained in:
parent
b5d14a8b64
commit
08044381f6
4 changed files with 29 additions and 14 deletions
15
system/alt.nix
Normal file
15
system/alt.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
users.users.alt = {
|
||||
isSystemUser = true;
|
||||
description = "Alt";
|
||||
extraGroups = [
|
||||
"networkmanager"
|
||||
];
|
||||
shell = pkgs.fish;
|
||||
group = "alt";
|
||||
home = "/home/alt";
|
||||
};
|
||||
users.groups.alt = {};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue