dots/hosts/orion/default.nix
Price Hiller c690e01544
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m4s
style: format nix files
2024-05-27 13:19:55 -05:00

15 lines
210 B
Nix

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