forked from DGNum/infrastructure
Tom Hubrecht
ecbad0a638
This adds subdirectories for the different types of systems, for the modules and the machines
20 lines
264 B
Nix
20 lines
264 B
Nix
{
|
|
versions = [
|
|
# Supported nixpkgs versions
|
|
"unstable"
|
|
"23.11"
|
|
"24.05"
|
|
"24.11"
|
|
];
|
|
|
|
systems = [
|
|
# Supported system types
|
|
"zyxel-nwa50ax"
|
|
"nixos"
|
|
];
|
|
|
|
categories = {
|
|
nixos = "nixos";
|
|
zyxel-nwa50ax = "liminix";
|
|
};
|
|
}
|