Adding pass-autotype

This commit is contained in:
2026-04-12 17:09:00 +02:00
parent 040c6e8b31
commit cca943c25c
4 changed files with 78 additions and 15 deletions

View File

@@ -5,8 +5,10 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
htt-src.url = "git+ssh://gitea@typofelho.ddns.net/TypoMustakes/hyprland-toggle-tiling.git";
ll-src.url = "git+ssh://gitea@typofelho.ddns.net/TypoMustakes/legacy-launcher.git";
hyprland-toggle-tiling-src.url = "git+ssh://gitea@typofelho.ddns.net/TypoMustakes/hyprland-toggle-tiling.git";
legacy-launcher-src.url = "git+ssh://gitea@typofelho.ddns.net/TypoMustakes/legacy-launcher.git";
pass-autotype-src.url = "git+ssh://gitea@typofelho.ddns.net/TypoMustakes/pass-autotype.git";
home-manager = {
url = "github:nix-community/home-manager";
@@ -14,13 +16,22 @@
};
};
outputs = { self, htt-src, ll-src, nixpkgs, nixpkgs-unstable, home-manager, ... }: {
outputs = {
self,
hyprland-toggle-tiling-src,
legacy-launcher-src,
pass-autotype-src,
nixpkgs,
nixpkgs-unstable,
home-manager,
... }: {
nixosConfigurations.Prometheus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
hyprland-toggle-tiling = htt-src.packages.x86_64-linux.default;
legacy-launcher = ll-src.packages.x86_64-linux.default;
hyprland-toggle-tiling = hyprland-toggle-tiling-src.packages.x86_64-linux.default;
legacy-launcher = legacy-launcher-src.packages.x86_64-linux.default;
pass-autotype = pass-autotype-src.packages.x86_64-linux.default;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
@@ -38,8 +49,9 @@
system = "x86_64-linux";
specialArgs = {
hyprland-toggle-tiling = htt-src.packages.x86_64-linux.default;
legacy-launcher = ll-src.packages.x86_64-linux.default;
hyprland-toggle-tiling = hyprland-toggle-tiling-src.packages.x86_64-linux.default;
legacy-launcher = legacy-launcher-src.packages.x86_64-linux.default;
pass-autotype = pass-autotype-src.packages.x86_64-linux.default;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";