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,10 +9,19 @@
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
flake-utils = {
url = "github:numtide/flake-utils";
};
notewrapper = {
url = "github:tomasriveral/notewrapper";
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 = {
# based on quickshell. See https://github.com/caelestia-dots/shell
url = "github:caelestia-dots/shell";
+2 -1
View File
@@ -1,4 +1,4 @@
_: {
{inputs, ...}: {
flake.nixosModules.development = {
pkgs,
pkgs-unstable,
@@ -31,6 +31,7 @@ _: {
ltex-ls-plus
pylint
black
inputs.nixpkgs-notifier.packages.${pkgs.system}.default
];
};
}