Move xeon07 configuration to a directory

This commit is contained in:
2023-04-18 16:09:23 +02:00
parent 0f7a0c3ac2
commit 848efdcb2d
15 changed files with 0 additions and 0 deletions

20
xeon07/users.nix Normal file
View File

@@ -0,0 +1,20 @@
{ ... }:
{
users = {
mutableUsers = false;
users.rarias = {
uid = 1880;
isNormalUser = true;
home = "/home/Computational/rarias";
description = "Rodrigo Arias";
group = "Computational";
extraGroups = [ "wheel" ];
hashedPassword = "$6$u06tkCy13enReBsb$xiI.twRvvTfH4jdS3s68NZ7U9PSbGKs5.LXU/UgoawSwNWhZo2hRAjNL5qG0/lAckzcho2LjD0r3NfVPvthY6/";
};
groups = {
Computational = { gid = 564; };
};
};
}