diff options
| author | seth <[email protected]> | 2024-03-11 16:32:11 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-03-11 16:32:11 -0400 |
| commit | 4e53d30cc5d1d74b4310213e98f28300dd85e5df (patch) | |
| tree | feea2d69249b3a3ddad07fe4d36b7f34785aefac | |
| parent | 4149d803d6f84f726d6c82d7ed4a87f22746cf69 (diff) | |
nixos/plasma: use krunner-nix
| -rw-r--r-- | flake.lock | 21 | ||||
| -rw-r--r-- | flake.nix | 5 | ||||
| -rw-r--r-- | modules/nixos/desktop/plasma/default.nix | 2 |
3 files changed, 28 insertions, 0 deletions
@@ -281,6 +281,26 @@ "type": "github" } }, + "krunner-nix": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1696278906, + "narHash": "sha256-z2tbFXMC+nSN7vhn2WSoMVdViolucLeoDSfOfnRcmCE=", + "owner": "pluiedev", + "repo": "krunner-nix", + "rev": "8a819944620db8eab35e7dbb14d1916c9e7a478d", + "type": "github" + }, + "original": { + "owner": "pluiedev", + "repo": "krunner-nix", + "type": "github" + } + }, "lanzaboote": { "inputs": { "crane": "crane", @@ -504,6 +524,7 @@ "flake-parts": "flake-parts", "getchvim": "getchvim", "home-manager": "home-manager", + "krunner-nix": "krunner-nix", "lanzaboote": "lanzaboote", "nix-index-database": "nix-index-database", "nixos-wsl": "nixos-wsl", @@ -179,6 +179,11 @@ inputs.nixpkgs.follows = "nixpkgs"; }; + krunner-nix = { + url = "github:pluiedev/krunner-nix"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + lanzaboote = { url = "github:nix-community/lanzaboote"; inputs = { diff --git a/modules/nixos/desktop/plasma/default.nix b/modules/nixos/desktop/plasma/default.nix index c4d8c95..d2e2aee 100644 --- a/modules/nixos/desktop/plasma/default.nix +++ b/modules/nixos/desktop/plasma/default.nix @@ -2,6 +2,7 @@ config, lib, pkgs, + inputs', ... }: let cfg = config.desktop.plasma; @@ -24,6 +25,7 @@ in { systemPackages = with pkgs; [ haruna + inputs'.krunner-nix.packages.default ]; }; |
