nixos-config/modules/sean.nix

25 lines
527 B
Nix
Raw Normal View History

2021-11-09 17:20:34 +00:00
{ config, lib, pkgs, ... }:
{
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"
'';
2021-11-09 17:20:34 +00:00
}