mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
fix eval errors in checks
This commit is contained in:
parent
1f1cf3a6be
commit
52fb1204d6
1 changed files with 23 additions and 19 deletions
|
@ -10,12 +10,22 @@ let
|
|||
flake = flakeFromSystem system;
|
||||
pkgs = import inputs.nixpkgs {
|
||||
inherit system;
|
||||
overlays = map [
|
||||
"lix-module"
|
||||
"hyprland-contrib"
|
||||
"nixpkgs-wayland"
|
||||
] flake.overlay;
|
||||
overlays = [
|
||||
(flake.overlay "lix-module")
|
||||
(flake.overlay "hyprland-contrib")
|
||||
(flake.overlay "nixpkgs-wayland")
|
||||
];
|
||||
};
|
||||
myPackages = map [
|
||||
"tsm"
|
||||
"hyprman"
|
||||
"zls"
|
||||
] flake.pkg;
|
||||
|
||||
hyprPackages = with (flake.pkgs "hyprland"); [
|
||||
default
|
||||
xdg-desktop-portal-hyprland
|
||||
];
|
||||
in
|
||||
{
|
||||
makePackages =
|
||||
|
@ -23,24 +33,18 @@ in
|
|||
{
|
||||
src = ./.;
|
||||
nativeBuildInputs =
|
||||
[
|
||||
pkgs.pixi
|
||||
pkgs.swww
|
||||
pkgs.nixVersions.stable
|
||||
]
|
||||
++ (map [
|
||||
"tsm"
|
||||
"hyprman"
|
||||
"zls"
|
||||
] flake.pkg)
|
||||
++ (with flake.pkgs "hyprland"; [
|
||||
default
|
||||
xdg-desktop-portal-hyprland
|
||||
(with pkgs; [
|
||||
pixi
|
||||
swww
|
||||
nixVersions.stable
|
||||
])
|
||||
++ [
|
||||
(flake.pkgs "roc").full
|
||||
(flake.pkgs "zig2nix").zig.master.bin
|
||||
];
|
||||
]
|
||||
++ myPackages
|
||||
++ hyprPackages;
|
||||
|
||||
}
|
||||
''
|
||||
mkdir "$out"
|
||||
|
|
Loading…
Reference in a new issue