init: scaffold nixos flake for lab server

This commit is contained in:
Lewis Wynne 2026-04-04 19:20:52 +01:00
commit 1a7c5c9489
7 changed files with 89 additions and 0 deletions

12
hosts/common/default.nix Normal file
View file

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