Skip to content

Commit

Permalink
Update examples to 24.11, fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 committed Dec 11, 2024
1 parent a8a2a73 commit ff69f94
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
# flake.nix
inputs = {
home-manager = {
url = "github:nix-community/home-manager/release-24.05";
url = "github:nix-community/home-manager/release-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.11";
nixvim = {
url = "github:nix-community/nixvim/nixos-24.05";
url = "github:nix-community/nixvim/nixos-24.11";
inputs.nixpkgs.follows = "nixpkgs";
};
Expand All @@ -31,20 +31,20 @@ inputs = {
imports = [ inputs.nvim.nixosModules.nvim ];
# See <https://nix-community.github.io/nixvim/NeovimOptions/index.html>
# for availabe options.
# for available options.
programs.nixvim.enable = true;
}
```

### HomeManager
### Home-Manager

```nix
# home.nix
{
imports = [ inputs.nvim.homeManagerModules.nvim ];
# See <https://nix-community.github.io/nixvim/NeovimOptions/index.html>
# for availabe options.
# for available options.
programs.nixvim.enable = true;
}
```
Expand All @@ -63,7 +63,7 @@ inputs = {
(inputs.nvim.packages.x86_64-linux.nixvimWithOptions {
inherit pkgs;
# See <https://nix-community.github.io/nixvim/NeovimOptions/index.html>
# for availabe options.
# for available options.
options.enableMan = false;
})
];
Expand Down

0 comments on commit ff69f94

Please sign in to comment.