init nix-os configuraion files

This commit is contained in:
2023-10-06 12:11:50 +08:00
commit adc025c7d9
164 changed files with 7520 additions and 0 deletions

13
libs/default.nix Normal file
View File

@@ -0,0 +1,13 @@
{ nixpkgs }:
with nixpkgs.lib; {
# Add your library functions here
#
forAllSystems = genAttrs [
"aarch64-linux"
"i686-linux"
"x86_64-linux"
"aarch64-darwin"
"x86_64-darwin"
];
}