summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorseth <[email protected]>2024-03-11 16:32:11 -0400
committerseth <[email protected]>2024-03-11 16:32:11 -0400
commit4e53d30cc5d1d74b4310213e98f28300dd85e5df (patch)
treefeea2d69249b3a3ddad07fe4d36b7f34785aefac
parent4149d803d6f84f726d6c82d7ed4a87f22746cf69 (diff)
nixos/plasma: use krunner-nix
-rw-r--r--flake.lock21
-rw-r--r--flake.nix5
-rw-r--r--modules/nixos/desktop/plasma/default.nix2
3 files changed, 28 insertions, 0 deletions
diff --git a/flake.lock b/flake.lock
index c6a1e5e..daaad56 100644
--- a/flake.lock
+++ b/flake.lock
@@ -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",
diff --git a/flake.nix b/flake.nix
index 86dbd59..80e32dd 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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
];
};