about summary refs log tree commit diff stats
path: root/flake
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-21 16:22:37 +0200
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-08-21 16:22:37 +0200
commit38c80063b5892c116a864a0efc05118dfac82e5f (patch)
tree0e58eb3a1f918329d8b47f12dc1a38778a95fdd5 /flake
parentstyle(treewide): Reformat (diff)
downloadnixos-config-38c80063b5892c116a864a0efc05118dfac82e5f.tar.gz
nixos-config-38c80063b5892c116a864a0efc05118dfac82e5f.zip
fix(flake/packages): Provide pkgsStable to `nvim` pkg
Diffstat (limited to 'flake')
-rw-r--r--flake/default.nix3
-rw-r--r--flake/packages/default.nix3
2 files changed, 4 insertions, 2 deletions
diff --git a/flake/default.nix b/flake/default.nix
index c04be901..ab1906fc 100644
--- a/flake/default.nix
+++ b/flake/default.nix
@@ -78,6 +78,7 @@ in {
     inherit
       nixos-generators
       pkgs
+      pkgsStable
       myPkgs
       sysLib
       system
@@ -106,7 +107,7 @@ in {
         # ragenix.packages."${system}".default
 
         # shell
-        pkgs.shfmt # TODO: Integrate this into nvim <2023-10-31>
+        pkgs.shfmt
 
         # rust
         pkgs.rustfmt
diff --git a/flake/packages/default.nix b/flake/packages/default.nix
index b670793d..cdc45c64 100644
--- a/flake/packages/default.nix
+++ b/flake/packages/default.nix
@@ -3,6 +3,7 @@
   nixos-generators,
   pkgs,
   myPkgs,
+  pkgsStable,
   sysLib,
   nixVim,
   system,
@@ -23,7 +24,7 @@
           inherit (value._module.args) pkgs;
           inherit (pkgs) lib;
         in {
-          inherit pkgs lib;
+          inherit pkgs pkgsStable lib;
           nixosConfig = value.config;
           config = value.config.home-manager.users.soispha;
         };