mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
29 lines
596 B
Nix
29 lines
596 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
users.users.sean = {
|
|
uid = 2000;
|
|
isNormalUser = true;
|
|
extraGroups = [
|
|
"audio"
|
|
"dialout"
|
|
"input"
|
|
"networkmanager"
|
|
"video"
|
|
"wheel"
|
|
"wireshark"
|
|
];
|
|
openssh.authorizedKeys.keys = import ../lib/ssh-keys.nix;
|
|
};
|
|
|
|
systemd.tmpfiles.rules = [ "e /home/sean/Downloads - - - 9d" ];
|
|
|
|
environment.etc."my-settings.sh".text = ''
|
|
git config --global user.email "sean.bck@gmail.com"
|
|
git config --global user.name "Sean Buckley"
|
|
'';
|
|
|
|
users.users.zim = {
|
|
uid = 2099;
|
|
isNormalUser = true;
|
|
};
|
|
}
|