nixos/hosts/common/default.nix
2026-04-04 22:47:23 +01:00

15 lines
256 B
Nix

{ pkgs, ... }:
{
nix.settings.experimental-features = [ "nix-command" "flakes" ];
time.timeZone = "Europe/London";
i18n.defaultLocale = "en_GB.UTF-8";
environment.systemPackages = with pkgs; [
neovim
git
sops
just
htop
];
}