Add initial configuration

This commit is contained in:
2023-03-31 18:27:25 +02:00
commit 52eed708f0
8 changed files with 216 additions and 0 deletions

15
users.nix Normal file
View File

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