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/nixosConfigurations | |
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/nixosConfigurations')
-rw-r--r-- | flake/nixosConfigurations/default.nix | 2 |
1 files changed, 2 insertions, 0 deletions
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 |