Move users.nix to common

This commit is contained in:
2023-04-18 18:45:10 +02:00
committed by Rodrigo Arias Mallo
parent c580254dde
commit f7b18098b1
3 changed files with 1 additions and 1 deletions

View File

@@ -11,7 +11,6 @@
./overlays.nix
./slurm.nix
./ssh.nix
./users.nix
<agenix/modules/age.nix>
];

View File

@@ -1,20 +0,0 @@
{ ... }:
{
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; };
};
};
}