69 lines
1.9 KiB
Nix
69 lines
1.9 KiB
Nix
{
|
|
description = "A very basic flake";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
|
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable";
|
|
|
|
hyprland-toggle-tiling-src.url = "git+https://gitea@typofelho.ddns.net/TypoMustakes/hyprland-toggle-tiling";
|
|
legacy-launcher-src.url = "git+https://gitea@typofelho.ddns.net/TypoMustakes/legacy-launcher";
|
|
pass-autotype-src.url = "git+https://gitea@typofelho.ddns.net/TypoMustakes/pass-autotype";
|
|
|
|
|
|
home-manager = {
|
|
url = "github:nix-community/home-manager";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
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 = 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";
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
modules = [
|
|
./hosts/Prometheus/configuration.nix
|
|
home-manager.nixosModules.home-manager
|
|
];
|
|
};
|
|
|
|
nixosConfigurations.Heracles = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
|
|
specialArgs = {
|
|
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";
|
|
config.allowUnfree = true;
|
|
};
|
|
};
|
|
|
|
modules = [
|
|
./hosts/Heracles/configuration.nix
|
|
home-manager.nixosModules.home-manager
|
|
];
|
|
};
|
|
};
|
|
}
|