nixos/modules/base.nix
2025-12-19 16:33:40 +01:00

21 lines
350 B
Nix

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