mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-29 19:46:17 +01:00
Remove explicit references to nixpkgs-unstable
Signed-off-by: Magic_RB <magic_rb@redalder.org>
This commit is contained in:
parent
8dddfe051a
commit
4021a23985
|
@ -1,8 +1,6 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
with lib;
|
||||
let
|
||||
inherit (config.magic_rb.pkgs) nixpkgs-unstable;
|
||||
|
||||
cfg = config.services.vault-agent;
|
||||
format = pkgs.formats.json { };
|
||||
in
|
||||
|
@ -13,7 +11,7 @@ in
|
|||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = nixpkgs-unstable.vault;
|
||||
default = pkgs.vault;
|
||||
defaultText = "nixpkgs.vault";
|
||||
description = ''
|
||||
The package used for the Vault agent and CLI.
|
||||
|
|
|
@ -4,8 +4,6 @@ let
|
|||
hunspellWithDicts = prev.callPackage ./hunspell-with-dicts.nix {
|
||||
dicts = with prev.hunspellDicts; [ en_US ];
|
||||
};
|
||||
nixpkgs-unstable = import inputs.nixpkgs-unstable
|
||||
{ system = prev.stdenv.system; };
|
||||
in
|
||||
{
|
||||
magic_rb = prev.magic_rb or {} // {
|
||||
|
@ -14,7 +12,7 @@ in
|
|||
emacsSrc = inputs.emacs;
|
||||
vtermModule = inputs.vtermModule;
|
||||
|
||||
emacsPackages = with nixpkgs-unstable;
|
||||
emacsPackages = with final;
|
||||
[
|
||||
hunspellWithDicts
|
||||
|
||||
|
@ -32,6 +30,10 @@ in
|
|||
clang-tools
|
||||
|
||||
rnix-lsp
|
||||
|
||||
ghc
|
||||
cabal-install
|
||||
magic_rb.easy-hls-nix
|
||||
];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue