2023-12-21 06:38:32 +00:00
|
|
|
{ ... }:
|
2021-11-09 17:20:34 +00:00
|
|
|
{
|
|
|
|
users.users.sean = {
|
2022-03-28 05:15:58 +00:00
|
|
|
uid = 2000;
|
2021-11-09 17:20:34 +00:00
|
|
|
isNormalUser = true;
|
2022-02-13 03:41:57 +00:00
|
|
|
extraGroups = [
|
|
|
|
"audio"
|
|
|
|
"dialout"
|
|
|
|
"input"
|
|
|
|
"networkmanager"
|
|
|
|
"video"
|
|
|
|
"wheel"
|
|
|
|
"wireshark"
|
|
|
|
];
|
2023-05-31 20:50:26 +00:00
|
|
|
openssh.authorizedKeys.keys = import ../lib/ssh-keys.nix;
|
2021-11-09 17:20:34 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
systemd.tmpfiles.rules = [ "e /home/sean/Downloads - - - 9d" ];
|
2021-11-09 17:24:21 +00:00
|
|
|
|
2022-12-06 06:43:00 +00:00
|
|
|
environment.etc."my-settings.sh".text = ''
|
2021-11-10 01:51:17 +00:00
|
|
|
git config --global user.email "sean.bck@gmail.com"
|
|
|
|
git config --global user.name "Sean Buckley"
|
|
|
|
'';
|
2023-11-11 18:52:41 +00:00
|
|
|
|
|
|
|
users.users.zim = {
|
|
|
|
uid = 2099;
|
|
|
|
isNormalUser = true;
|
|
|
|
};
|
2021-11-09 17:20:34 +00:00
|
|
|
}
|