restructure user management

This commit is contained in:
Vinzenz Schroeter 2023-09-24 12:39:28 +02:00
parent 3a9a7242fc
commit ddb7df4a4e
16 changed files with 482 additions and 481 deletions

View file

@ -1,10 +1,18 @@
{pkgs, ...}: {
config = {
environment.systemPackages = with pkgs; [
pciutils
ncdu
htop
tldr
];
environment = {
pathsToLink = ["/share/zsh"];
systemPackages = with pkgs; [
pciutils
ncdu
tldr
];
};
programs = {
git.enable = true;
zsh.enable = true;
htop.enable = true;
};
};
}