dots/hosts/orion/default.nix
Price Hiller c27bdf76cd
Some checks failed
Check Formatting of Files / Check-Formatting (push) Failing after 43s
refactor(nix): cleanup toplevel flake
2024-08-25 00:28:28 -05:00

16 lines
249 B
Nix

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