summaryrefslogtreecommitdiff
path: root/modules/nixos/desktop
diff options
context:
space:
mode:
authorseth <[email protected]>2025-01-05 23:24:04 -0500
committerGitHub <[email protected]>2025-01-06 04:24:04 +0000
commita0726ea66d1857eb2e1c9d7dfd2f10d30ac64706 (patch)
tree585d4c7706ef52fc037419958b0af86e216a5d43 /modules/nixos/desktop
parent85e702efc03b04cbb0ac5b1b2ef79c21602c8ed8 (diff)
treewide: back to flake parts (#539)
* treewide: back to flake parts * treewide: drop extra docs these are kind pointless
Diffstat (limited to 'modules/nixos/desktop')
-rw-r--r--modules/nixos/desktop/plasma/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/nixos/desktop/plasma/default.nix b/modules/nixos/desktop/plasma/default.nix
index dceded3..c021d46 100644
--- a/modules/nixos/desktop/plasma/default.nix
+++ b/modules/nixos/desktop/plasma/default.nix
@@ -2,11 +2,10 @@
config,
lib,
pkgs,
- inputs,
+ inputs',
...
}:
let
- inherit (pkgs.stdenv.hostPlatform) system;
cfg = config.desktop.plasma;
in
{
@@ -26,7 +25,7 @@ in
systemPackages = [
pkgs.haruna # mpv frontend
- inputs.krunner-nix.packages.${system}.default # thank you leah
+ inputs'.krunner-nix.packages.default # thank you leah
];
};