mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-06-29 12:49:10 +00:00
Increase modularity of configuration
This commit is contained in:
parent
ab876da423
commit
bb897d5682
4 changed files with 94 additions and 67 deletions
26
tongfang/nixos/users.nix
Normal file
26
tongfang/nixos/users.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
{ 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
|
||||
];
|
||||
};
|
||||
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
# Workaround for electron dependency in Logseq
|
||||
"electron-27.3.11"
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue