feat: add scf user to yoga

This commit is contained in:
Michael Mandl 2022-08-31 16:02:22 +02:00
parent 5687d00100
commit ec0e3552fb
Signed by: mandlm
GPG key ID: 4AA25D647AA54CC7
3 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,4 @@
{ config, lib, pkgs, user, ... }:
{ }

17
machines/yoga/users.nix Normal file
View file

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
users = {
mutableUsers = false;
users.scf = {
isNormalUser = true;
uid = 1666;
home = "/home/scf";
shell = pkgs.zsh;
extraGroups = [ "networkmanager" "audio" "video" "input" ];
hashedPassword = "$6$g83odibuCd5n67PJ$CZ/Z/11zUdBIQ86DEkdi2G1JnEkLYR/YZUPcMXKAb6GNUX7BjlUUVFAstbTRe3WEK.lg9h5/oqwSvmbJMcUt6/";
};
};
}