diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-02 10:58:21 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-02 11:06:29 +0200 |
commit | 5ff4f86757a0c77c340b129d1565a8e9d6f52711 (patch) | |
tree | 15f73778864c6a2c0302bcc99cd7a773df4f27f0 /flake | |
parent | fix(modules/system/sound): Remove overloaded `sound` option (diff) | |
download | nixos-config-5ff4f86757a0c77c340b129d1565a8e9d6f52711.tar.gz nixos-config-5ff4f86757a0c77c340b129d1565a8e9d6f52711.zip |
fix(modules/home/nvim/plgs/nvim/neorg): Use stable version
The unstable version is missing an lua dependency
Diffstat (limited to 'flake')
-rw-r--r-- | flake/default.nix | 4 | ||||
-rw-r--r-- | flake/nixosConfigurations/default.nix | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/flake/default.nix b/flake/default.nix index 3bd0e6ba..c04be901 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -2,6 +2,7 @@ # core self, pkgs, + pkgsStable, myPkgs, system, sysLib, @@ -31,6 +32,7 @@ nixosConfigurations = import ./nixosConfigurations { inherit self + pkgsStable myPkgs system nixpkgs_as_input @@ -101,7 +103,7 @@ in { pkgs.git-bug # secrets - ragenix.packages."${system}".default + # ragenix.packages."${system}".default # shell pkgs.shfmt # TODO: Integrate this into nvim <2023-10-31> diff --git a/flake/nixosConfigurations/default.nix b/flake/nixosConfigurations/default.nix index 92e1a41e..c15d7fdd 100644 --- a/flake/nixosConfigurations/default.nix +++ b/flake/nixosConfigurations/default.nix @@ -1,6 +1,7 @@ { self, system, + pkgsStable, myPkgs, nixpkgs_as_input, nixpkgs_open_prs, @@ -42,6 +43,7 @@ inherit # extra package sources nixpkgs_open_prs + pkgsStable myPkgs shell_library sysLib |