nixos-configs/flake.nix
2025-07-21 17:10:39 -04:00

78 lines
2 KiB
Nix

{
description = "Fabric's flake";
inputs = {
# nvidiaPkgs.url = "github:NixOS/nixpkgs/915a9de5b3ab337133e890f21f44deb44598c814";
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
home-manager = {
url = "github:nix-community/home-manager/master";
inputs.nixpkgs.follows = "nixpkgs";
};
nixvim = {
url = "github:nix-community/nixvim/main";
# If using a stable channel you can use `url = "github:nix-community/nixvim/nixos-<version>"`
inputs.nixpkgs.follows = "nixpkgs";
};
openapi-tui = {
url = "github:zaghaghi/openapi-tui";
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
# IMPORTANT: we're using "libgbm" and is only available in unstable so ensure
# to have it up-to-date or simply don't specify the nixpkgs input
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
self,
nixpkgs,
# nvidiaPkgs,
home-manager,
zen-browser,
nixvim,
openapi-tui,
...
}: let
lib = nixpkgs.lib;
pkgs = nixpkgs.legacyPackages."x86_64-linux";
# nvidiaPkgsWithUnfree = import nvidiaPkgs {
# config = {
# allowUnfree = true;
# };
# overlays = [];
# system = "x86_64-linux";
# };
in {
nixosConfigurations = {
tatara = lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/tatara/default.nix
];
};
zion = lib.nixosSystem {
system = "x86_64-linux";
modules = [
./hosts/zion/default.nix
];
# specialArgs = {
# nvidiaPkgs = nvidiaPkgsWithUnfree;
# };
};
};
homeConfigurations.fabric = home-manager.lib.homeManagerConfiguration {
inherit pkgs;
extraSpecialArgs = {
inherit nixvim openapi-tui zen-browser; # deleted hyprpanel
};
modules = [
./home/fabric/default.nix
nixvim.homeManagerModules.nixvim
# hyprpanel.homeManagerModules.hyprpanel
];
};
};
}