Fixed apps.default in flake.nix

This commit is contained in:
Narice 2022-05-14 17:05:27 +01:00
parent 7a5a10980d
commit 1b5c4ffff5

View File

@ -30,6 +30,6 @@
apps.hyprland = utils.lib.mkApp { drv = packages.hyprland; };
defaultApp = apps.hyprland;
apps.default =
utils.lib.mkApp { drv = self.packages."${system}".default; };
utils.lib.mkApp { drv = self.packages."${system}".hyprland; };
});
}