20 lines
323 B
Nix
20 lines
323 B
Nix
{ config, pkgs, mainDisk, ... }:
|
|
|
|
{
|
|
nix.settings = {
|
|
experimental-features = [ "nix-command" "flakes" ];
|
|
auto-optimise-store = true;
|
|
};
|
|
|
|
boot.loader.grub = {
|
|
enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
curl
|
|
htop
|
|
tmux
|
|
];
|
|
}
|