2024-06-09 22:11:13 +02:00
|
|
|
{ pkgs, ... }:
|
2024-04-04 13:49:19 +02:00
|
|
|
|
|
|
|
{
|
2024-07-25 22:19:16 +02:00
|
|
|
programs.zsh.enable = true;
|
|
|
|
|
|
|
|
programs.nh = {
|
|
|
|
enable = true;
|
|
|
|
flake = "/nix/config";
|
|
|
|
};
|
|
|
|
|
2024-04-04 13:49:19 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
fastfetch
|
|
|
|
wget
|
|
|
|
unzip
|
|
|
|
git
|
|
|
|
tree
|
|
|
|
dos2unix
|
2024-06-25 01:28:34 +02:00
|
|
|
neovim
|
2024-04-04 13:49:19 +02:00
|
|
|
];
|
|
|
|
}
|