update and add overlay for broken openjdk8

This commit is contained in:
smayzy
2025-07-15 23:04:46 +02:00
parent f7d1929d01
commit 4dc8f7d2a5
5 changed files with 34 additions and 49 deletions
+3 -2
View File
@@ -21,12 +21,13 @@
outputs = { self, nixpkgs, nix-flatpak, nvf, ... } @ inputs:
let
system = "x86_64-linux";
overlays = builtins.attrValues (import ./overlays);
in
{
nixosConfigurations = {
desktop1 = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; };
specialArgs = { inherit inputs system overlays; };
modules = [
./hosts/desktop1/configuration.nix
nix-flatpak.nixosModules.nix-flatpak
@@ -35,7 +36,7 @@
];
};
laptop1 = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs system; };
specialArgs = { inherit inputs system overlays; };
modules = [
./hosts/laptop1/configuration.nix
nix-flatpak.nixosModules.nix-flatpak