migration to flake-parts

This commit is contained in:
Danilo Reyes
2025-10-12 13:23:38 -06:00
parent 1b743f9fcc
commit 6497dede6f
6 changed files with 143 additions and 76 deletions

18
parts/packages.nix Normal file
View File

@@ -0,0 +1,18 @@
{ inputs, ... }:
{
perSystem =
{ system, ... }:
{
packages = (inputs.jawz-scripts.packages.${system} or { }) // {
emacs-vm = inputs.nixos-generators.nixosGenerate {
inherit system;
modules = inputs.self.lib.commonModules "emacs";
format = "vm";
specialArgs = {
inherit inputs;
outputs = inputs.self;
};
};
};
};
}