added first modules

This commit is contained in:
2026-07-01 19:19:40 +01:00
parent 3644a0f265
commit 4fd7db083b
4 changed files with 98 additions and 2 deletions

9
modules/system/core.nix Normal file
View File

@@ -0,0 +1,9 @@
{
self,
inputs,
...
}: {
flake.nixosModules.core = {pkgs}: {
programs.zsh.enable = true;
};
}