flake: refactor

trying again
This commit is contained in:
Artur Manuel 2024-07-20 22:34:32 +01:00
commit 84e466bbef
Failed to generate hash of commit
5 changed files with 4 additions and 5 deletions

2
.gitignore vendored
View file

@ -1,7 +1,7 @@
/* /*
/**/*~ /**/*~
!/flake.* !/flake.*
!/overlay !/package
!/.gitignore !/.gitignore
!/README.org !/README.org
!/media !/media

View file

@ -18,7 +18,9 @@
]; ];
flake = { flake = {
overlays.default = final: _prev: import ./overlay final; overlays.default = final: _prev: {
pankomacs = final.callPackage ./package { };
};
}; };
perSystem = { pkgs, self', config, system, ... }: { perSystem = { pkgs, self', config, system, ... }: {

View file

@ -1,3 +0,0 @@
pkgs: {
pankomacs = pkgs.callPackage ./package { };
}