dots/hosts/orion/default.nix
Price Hiller 0533f3049d
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
style: fmt
2024-06-02 13:00:49 -05:00

16 lines
247 B
Nix

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