Split flake into multiple files

This commit is contained in:
Pim Kunis 2024-11-11 21:40:36 +01:00
parent 47c2a10ee7
commit d70a737bc2
9 changed files with 159 additions and 108 deletions

View file

@ -1,4 +1,11 @@
{
sue = import ./sue;
gamepc = import ./gamepc;
sue = {
system = "x86_64-linux";
module = import ./sue;
};
gamepc = {
system = "x86_64-linux";
module = import ./gamepc;
};
}