19 lines
315 B
Nix
19 lines
315 B
Nix
{ config, pkgs, mainDisk, ... }:
|
|
|
|
{
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
curl
|
|
htop
|
|
tmux
|
|
neovim
|
|
];
|
|
}
|