chore: align flake input nixpkgs

Signed-off-by: Lander Van den Bulcke <landervandenbulcke@gmail.com>
This commit is contained in:
Lander Van den Bulcke 2025-09-28 11:17:57 +02:00
parent d1787f4a2c
commit 4d97659b1b
Signed by: lander
GPG key ID: 0142722B4B0C536F
2 changed files with 56 additions and 122 deletions

View file

@ -13,31 +13,48 @@
};
# disko
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
disko = {
url = "github:nix-community/disko";
inputs.nixpkgs.follows = "nixpkgs";
};
# theme
catppuccin.url = "github:catppuccin/nix/release-25.05";
catppuccin = {
url = "github:catppuccin/nix/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
# Home manager
home-manager.url = "github:nix-community/home-manager/release-25.05";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
home-manager = {
url = "github:nix-community/home-manager/release-25.05";
inputs.nixpkgs.follows = "nixpkgs";
};
# colmena
colmena.url = "github:zhaofengli/colmena";
colmena = {
url = "github:zhaofengli/colmena";
inputs = {
nixpkgs.follows = "nixpkgs-unstable";
stable.follows = "nixpkgs";
};
};
# nixos-wsl
nixos-wsl.url = "github:nix-community/NixOS-WSL/main";
nixos-wsl = {
url = "github:nix-community/NixOS-WSL/main";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
# neovim
nixvim.url = "git+https://git.escapeangle.com/lander/nixvim.git";
nixvim = {
url = "git+https://git.escapeangle.com/lander/nixvim.git";
inputs.nixpkgs.follows = "nixpkgs";
};
# mailserver
nixos-mailserver = {
url = "gitlab:simple-nixos-mailserver/nixos-mailserver/nixos-25.05";
inputs = {
nixpkgs.follows = "nixpkgs";
};
inputs.nixpkgs.follows = "nixpkgs";
};
# headplane
@ -49,6 +66,7 @@
# tidalcycles
tidalcycles = {
url = "github:mitchmindtree/tidalcycles.nix";
inputs.nixpkgs.follows = "nixpkgs-unstable";
};
};