nixpkgs-notifier: added as a flake input

This commit is contained in:
2026-06-03 13:29:19 +02:00
parent fd8221d3ab
commit f66b4ae739
2 changed files with 11 additions and 1 deletions
+9
View File
@@ -9,9 +9,18 @@
url = "github:nix-community/home-manager/release-26.05"; url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
flake-utils = {
url = "github:numtide/flake-utils";
};
notewrapper = { notewrapper = {
url = "github:tomasriveral/notewrapper"; url = "github:tomasriveral/notewrapper";
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs-unstable";
inputs.flake-utils.follows = "flake-utils";
};
nixpkgs-notifier = {
url = "github:tomasriveral/nixpkgs-notifier";
inputs.flake-utils.follows = "flake-utils";
inputs.nixpkgs.follows = "nixpkgs-unstable";
}; };
caelestia-shell = { caelestia-shell = {
# based on quickshell. See https://github.com/caelestia-dots/shell # based on quickshell. See https://github.com/caelestia-dots/shell
+2 -1
View File
@@ -1,4 +1,4 @@
_: { {inputs, ...}: {
flake.nixosModules.development = { flake.nixosModules.development = {
pkgs, pkgs,
pkgs-unstable, pkgs-unstable,
@@ -31,6 +31,7 @@ _: {
ltex-ls-plus ltex-ls-plus
pylint pylint
black black
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
]; ];
}; };
} }