Importing custom own flake

This commit is contained in:
2026-04-10 17:26:52 +02:00
parent 2efe86cc7c
commit 11cd51ffd1
5 changed files with 56 additions and 10 deletions

View File

@@ -5,17 +5,21 @@
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";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, nixpkgs-unstable, home-manager, ... }: {
outputs = { self, htt-src, nixpkgs, nixpkgs-unstable, home-manager, ... }: {
nixosConfigurations.Prometheus = nixpkgs.lib.nixosSystem {
system = "x86_64-linux";
specialArgs = {
htt = htt-src.packages.x86_64-linux.default;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;
@@ -32,6 +36,8 @@
system = "x86_64-linux";
specialArgs = {
htt = htt-src.packages.x86_64-linux.default;
pkgs-unstable = import nixpkgs-unstable {
system = "x86_64-linux";
config.allowUnfree = true;