mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 22:51:21 +00:00
27 lines
499 B
Nix
27 lines
499 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
|
|
opentofu
|
|
python3
|
|
gnumake
|
|
spotify
|
|
];
|
|
};
|
|
|
|
nixpkgs.config.permittedInsecurePackages = [
|
|
# Workaround for electron dependency in Logseq
|
|
"electron-27.3.11"
|
|
];
|
|
}
|