Price Hiller
10dd9d65b6
Some checks failed
Check Formatting of Files / Check-Formatting (push) Has been cancelled
15 lines
248 B
Nix
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";
|
|
} |