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.nix | |
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.nix')
-rw-r--r-- | flake.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 6bd2395c..1860c601 100644 --- a/flake.nix +++ b/flake.nix @@ -3,7 +3,7 @@ inputs = { # base - nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-23.05"; + nixpkgs-stable.url = "github:NixOS/nixpkgs/nixos-24.05"; nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable"; # open nixpkgs prs nixpkgs-tfc.url = "github:soispha/nixpkgs/add-termfilechooser"; @@ -240,6 +240,7 @@ # core self, nixpkgs, + nixpkgs-stable, nixpkgs-tfc, nixpkgs-onlykey, # modules @@ -265,6 +266,7 @@ system = "x86_64-linux"; sysLib = shell_library.lib.${system}; + pkgsStable = nixpkgs-stable.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system}; myPkgs = import ./pkgs { inherit sysLib pkgs; @@ -283,6 +285,7 @@ # core self pkgs + pkgsStable myPkgs system sysLib |