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.*
!/overlay
!/package
!/.gitignore
!/README.org
!/media

View file

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

View file

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