This commit is contained in:
Schrottkatze 2023-09-09 01:10:22 +02:00
parent 9d44504c4e
commit 5938c92ec6
17 changed files with 1177 additions and 154 deletions

View file

@ -30,9 +30,9 @@ with builtins;
wget git neofetch pciutils zip unzip gnutar iw btop nodejs jdk8 jdk11
jdk libsecret gh nix-prefetch-scripts fzf glab openal
jdk libsecret gh nix-prefetch-scripts fzf glab ripgrep
sl lolcat appimage-run git-crypt file whois p7zip file nmap cmatrix tree
socat
socat smartmontools
];
};
@ -82,7 +82,7 @@ with builtins;
users.users.jade = {
isNormalUser = true;
extraGroups = [ "wheel" "input" "uinput" "libvirtd" "adbusers" ];
extraGroups = [ "wheel" "input" "uinput" "libvirtd" "adbusers" "dialout" "plugdev" ];
packages = [
pkgs.marksman
];
@ -93,6 +93,6 @@ users.users.jade = {
algorithm = "zstd";
};
users.defaultUserShell = pkgs.zsh;
users.defaultUserShell = pkgs.nushell.override { additionalFeatures = (p: p ++ ["dataframe"]); };
}