{ description = "nipsy's NixOS configuration"; inputs = { disko.url = "github:nix-community/disko"; disko.inputs.nixpkgs.follows = "nixpkgs-unstable"; home-manager-stable = { url = "github:nix-community/home-manager/release-23.11"; inputs.nixpkgs.follows = "nixpkgs-stable"; }; home-manager-unstable = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs-unstable"; }; nixos-hardware.url = "github:nixos/nixos-hardware"; nixpkgs-stable.url = "github:nixos/nixpkgs/release-23.11"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixos-unstable"; }; outputs = inputs@{ home-manager-stable, home-manager-unstable, nixos-hardware, nixpkgs-stable, nixpkgs-unstable, ... }: rec { nixosConfigurations = { darkstar = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; system = "x86_64-linux"; modules = [ ./hosts/darkstar home-manager-unstable.nixosModules.home-manager { home-manager.users.root = import ./home/root/ginaz.nix; home-manager.users.nipsy = import ./home/nipsy/ginaz.nix; } ]; }; ginaz = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; system = "x86_64-linux"; modules = [ ./hosts/ginaz nixos-hardware.nixosModules.lenovo-yoga-7-14ARH7.amdgpu home-manager-unstable.nixosModules.home-manager { home-manager.users.root = import ./home/root/ginaz.nix; home-manager.users.nipsy = import ./home/nipsy/ginaz.nix; } ]; }; richese = nixpkgs-unstable.lib.nixosSystem { pkgs = pkgs-unstable; system = "x86_64-linux"; modules = [ ./hosts/richese home-manager-unstable.nixosModules.home-manager { home-manager.users.root = import ./home/root/richese.nix; home-manager.users.nipsy = import ./home/nipsy/richese.nix; } ]; }; }; pkgs-stable = import nixpkgs-stable { system = "x86_64-linux"; config.allowUnfree = true; overlays = [(import ./pkgs)]; }; pkgs-unstable = import nixpkgs-unstable { system = "x86_64-linux"; config.allowUnfree = true; overlays = [(import ./pkgs)]; }; }; }