dots/hosts/orion/default.nix
Price Hiller 10dd9d65b6
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
refactor(hosts/orion)!: bump stateversion
2024-10-28 16:20:00 -05:00

15 lines
248 B
Nix

{ pkgs, clib, ... }:
{
imports = (
clib.recurseFilesInDirs [
./os
./modules
] ".nix"
);
system.stateVersion = "24.11";
environment.systemPackages = with pkgs; [
git
vim
];
time.timeZone = "America/Chicago";
}