Price Hiller
0533f3049d
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
16 lines
247 B
Nix
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";
|
|
}
|