dotfiles/tongfang/nixos/users.nix
2024-10-19 15:30:49 +02:00

43 lines
804 B
Nix

{ config, pkgs, ... }:
{
users.users.bart = {
isNormalUser = true;
description = "Bart van der Braak";
extraGroups = [ "networkmanager" "wheel" ];
packages = with pkgs; [
vscodium
thunderbird
fastfetch
wezterm
neovim
logseq
element-desktop
go-task
opentofu
python3
gnumake
spotify
_1password-gui
nodejs_22
corepack_22
azure-cli
sops
blender
];
};
nixpkgs.config.permittedInsecurePackages = [
# Workaround for electron dependency in Logseq
"electron-27.3.11"
];
# SSH agent configurations
programs.ssh.startAgent = true;
programs.ssh.extraConfig = ''
Host *
AddKeysToAgent yes
ServerAliveInterval 60
ServerAliveCountMax 3
'';
}