mirror of
https://github.com/Unkn0wnCat/dotfiles.git
synced 2025-05-10 06:46:36 +02:00
Switch to flake-based configuration
This commit is contained in:
parent
fad1c56a56
commit
f17713236d
25 changed files with 578 additions and 216 deletions
11
nixos/modules/users.nix
Normal file
11
nixos/modules/users.nix
Normal file
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
imports = [ ./ssh.nix ];
|
||||
|
||||
users.users.kevin = {
|
||||
isNormalUser = true;
|
||||
description = "Kevin Kandlbinder";
|
||||
extraGroups = [ "wheel" "docker" "dialout" "networkmanager" "floppy" "audio" "lp" "cdrom" "tape" "video" "render" ];
|
||||
};
|
||||
|
||||
kevin.ssh.authorized.kevin.users = ["kevin" "root"];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue