Compare commits

3 Commits

Author SHA1 Message Date
e758eaef20 Don't override hyprland package 2024-08-24 10:42:50 -07:00
8e7f1f1577 Add moonlight 2024-08-24 09:56:27 -07:00
4d34909b52 Just pass inputs around 2024-08-24 09:54:17 -07:00
3 changed files with 5 additions and 5 deletions

View File

@@ -22,7 +22,7 @@
}; };
}; };
outputs = { nixpkgs, home-manager, hyprland, hy3, ... }: outputs = { nixpkgs, home-manager, hyprland, ... } @inputs:
let let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
@@ -40,7 +40,7 @@
# Optionally use extraSpecialArgs # Optionally use extraSpecialArgs
# to pass through arguments to home.nix # to pass through arguments to home.nix
extraSpecialArgs = { inherit hy3; inherit hyprland; }; extraSpecialArgs = { inherit inputs; };
}; };
}; };
} }

View File

@@ -51,6 +51,7 @@ in
pkgs.killall pkgs.killall
pkgs.kitty pkgs.kitty
pkgs.less pkgs.less
pkgs.moonlight-qt
pkgs.ncdu pkgs.ncdu
pkgs.pandoc pkgs.pandoc
pkgs.pinentry-qt pkgs.pinentry-qt

View File

@@ -1,4 +1,4 @@
{ hyprland, hy3, ... }: { inputs, ... }:
{ {
imports = [ imports = [
@@ -7,8 +7,7 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
package = hyprland.packages.x86_64-linux.hyprland; plugins = [ inputs.hy3.packages.x86_64-linux.hy3 ];
plugins = [ hy3.packages.x86_64-linux.hy3 ];
settings = { settings = {
"$mod" = "SUPER"; "$mod" = "SUPER";
"$terminal" = "kitty"; "$terminal" = "kitty";