Moved package.nix to package-backend.nix to make room for frontend

package
This commit is contained in:
rzuasti
2026-02-12 08:43:24 -05:00
parent 9c5755a2d9
commit d95803c773
3 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -55,7 +55,7 @@
}); });
# A Nixpkgs overlay that provides a 'oott' package. # A Nixpkgs overlay that provides a 'oott' package.
overlays.default = final: prev: {oott = final.callPackage ./nix/package.nix {};}; overlays.default = final: prev: {oott = final.callPackage ./nix/package-backend.nix {};};
# Package definition # Package definition
packages = forEachSystem (system: { packages = forEachSystem (system: {
-2
View File
@@ -16,8 +16,6 @@ enum DeviceType {
return Icons.tablet; return Icons.tablet;
case server: case server:
return Icons.storage; return Icons.storage;
default:
return Icons.device_unknown;
} }
} }
} }