bugfix(hyprland): Use proper flake url

This commit is contained in:
DashieTM 2025-11-11 15:33:10 +01:00
parent 3731bd6366
commit 39e4d182ce
3 changed files with 3 additions and 3 deletions

View file

@ -21,7 +21,7 @@
sops-nix.url = "github:Mic92/sops-nix"; sops-nix.url = "github:Mic92/sops-nix";
hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; hyprland.url = "github:hyprwm/Hyprland";
ironbar = { ironbar = {
url = "github:JakeStanger/ironbar"; url = "github:JakeStanger/ironbar";

View file

@ -5,6 +5,7 @@
inputs, inputs,
pkgs, pkgs,
options, options,
system,
... ...
}: { }: {
options.mods = { options.mods = {
@ -43,7 +44,7 @@
}; };
greeterCommand = lib.mkOption { greeterCommand = lib.mkOption {
default = "${ default = "${
lib.getExe pkgs.hyprland lib.getExe inputs.hyprland.packages.${system}.hyprland
} --config /etc/greetd/hyprgreet.conf"; } --config /etc/greetd/hyprgreet.conf";
example = "${ example = "${
lib.getExe pkgs.cage lib.getExe pkgs.cage

View file

@ -241,7 +241,6 @@ in {
defaultWindowRules; defaultWindowRules;
in { in {
enable = true; enable = true;
package = mkDashDefault pkgs.hyprland;
plugins = plugins =
[ [
(lib.mkIf config.mods.hypr.hyprland.hyprspaceEnable pkgs.hyprlandPlugins.hyprspace) (lib.mkIf config.mods.hypr.hyprland.hyprspaceEnable pkgs.hyprlandPlugins.hyprspace)