Price Hiller
02334f5601
All checks were successful
Check Formatting of Files / Check-Formatting (push) Successful in 1m14s
15 lines
213 B
Nix
15 lines
213 B
Nix
{ pkgs, lib, ... }:
|
|
{
|
|
imports = (
|
|
lib.recurseFilesInDirs [
|
|
./os
|
|
./modules
|
|
] ".nix"
|
|
);
|
|
system.stateVersion = "24.05";
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
neovim
|
|
];
|
|
}
|