This commit is contained in:
2026-07-29 13:59:12 +01:00
commit 072d97d290
13 changed files with 2173 additions and 0 deletions

29
modules/default.nix Normal file
View File

@@ -0,0 +1,29 @@
{
self,
moduleWithSystem,
...
}: {
flake.nixosModules.name = moduleWithSystem ({
pkgs,
self',
inputs',
...
}: let
modules = with self.nixosModules; [];
in {
imports = modules;
programs.name = {
enable = true;
package = self'.packages.hello;
};
});
perSystem = {
pkgs,
lib,
self',
...
}: {
packages.hello = pkgs.hello;
};
}