From 4761258eedabc85ebfe0533082902be9f3526a46 Mon Sep 17 00:00:00 2001 From: "Lennart J. Kurzweg (Nx2)" Date: Tue, 18 Nov 2025 16:14:27 +0100 Subject: [PATCH] fix hyper pkgs version --- configuration.nix | 2 +- flake.lock | 31 ------------------------------- flake.nix | 10 +++------- 3 files changed, 4 insertions(+), 39 deletions(-) diff --git a/configuration.nix b/configuration.nix index 0bcd6f0..5b71d32 100644 --- a/configuration.nix +++ b/configuration.nix @@ -1,4 +1,4 @@ -{ ... }@all: with all; { +{ pkgs, ... }@all: with all; { imports = [ inputs.sops-nix.nixosModules.sops ./system-modules/adb.nix diff --git a/flake.lock b/flake.lock index bfb20b9..4bae71b 100644 --- a/flake.lock +++ b/flake.lock @@ -390,36 +390,6 @@ "type": "github" } }, - "hyprland-plugins": { - "inputs": { - "hyprland": [ - "hyprland" - ], - "nixpkgs": [ - "hyprland-plugins", - "hyprland", - "nixpkgs" - ], - "systems": [ - "hyprland-plugins", - "hyprland", - "systems" - ] - }, - "locked": { - "lastModified": 1763254333, - "narHash": "sha256-u1pRjMwSxb9Cj434lomk9r4NjTZxP7X1Xb5oIX70yZ8=", - "owner": "hyprwm", - "repo": "hyprland-plugins", - "rev": "a2bf2df93467d11918068d19372ed42ea6bdba61", - "type": "github" - }, - "original": { - "owner": "hyprwm", - "repo": "hyprland-plugins", - "type": "github" - } - }, "hyprland-protocols": { "inputs": { "nixpkgs": [ @@ -970,7 +940,6 @@ "home-manager": "home-manager", "home-manager24": "home-manager24", "hyprland": "hyprland", - "hyprland-plugins": "hyprland-plugins", "lanzaboote": "lanzaboote", "nix-on-droid": "nix-on-droid", "nixos-wsl": "nixos-wsl", diff --git a/flake.nix b/flake.nix index 19231b5..73b015e 100644 --- a/flake.nix +++ b/flake.nix @@ -32,13 +32,7 @@ lanzaboote.url = "github:nix-community/lanzaboote/v0.4.2"; hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; - hyprland-plugins = { - url = "github:hyprwm/hyprland-plugins"; - inputs.hyprland.follows = "hyprland"; - }; - yazi.url = "github:sxyazi/yazi"; - copyparty.url = "github:9001/copyparty"; }; @@ -54,9 +48,10 @@ domain = "nx2.site"; home = "/home/${user}"; webroot = "/var/lib/hugo/nx2site/public"; + pkgs-version = "25.05"; }; - get-pkgs = { host, system?system, nixpkgs?inputs.nixpkgs, version?"25.05" }: import nixpkgs { + get-pkgs = let s = system; in { host, system?s, nixpkgs?inputs.nixpkgs, version?"25.05" }: import nixpkgs { inherit system config; overlays = [(final: prev: { unstable = import nixpkgs-unstable { inherit system config; }; @@ -109,6 +104,7 @@ system = "aarch64-linux"; user = "nix-on-droid"; home = "/data/data/com.termux.nix/files/home"; + pkgs-version = "24.05"; }; rice = import ./flake-modules/rice.nix pkgs; in { inherit inputs hyper rice; };