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

12
parts/devshells.nix Normal file
View File

@@ -0,0 +1,12 @@
{ inputs, ... }:
{
perSystem = _: {
devShells =
inputs.self.lib.langList
|> map (name: {
inherit name;
value = inputs.self.nixosConfigurations.emacs.config.devShells.${name};
})
|> builtins.listToAttrs;
};
}