{ description = "Nixos configuration for Xeovalyte"; inputs = { nixpkgs.url = "nixpkgs/nixos-24.05"; nixpkgs-unstable.url = "nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager/release-24.05"; inputs.nixpkgs.follows = "nixpkgs"; }; nix-colors.url = "github:misterio77/nix-colors"; firefox-addons = { url = "gitlab:rycee/nur-expressions?dir=pkgs/firefox-addons"; inputs.nixpkgs.follows = "nixpkgs"; }; hyprlock = { url = "github:/hyprwm/hyprlock"; inputs.nixpkgs.follows = "nixpkgs"; }; hypridle = { url = "github:/hyprwm/hypridle"; inputs.nixpkgs.follows = "nixpkgs"; }; getchoo = { url = "github:getchoo/nix-exprs"; inputs.nixpkgs.follows = "nixpkgs-unstable"; }; }; outputs = inputs@{ self, nixpkgs, nixpkgs-unstable, home-manager, nix-colors, ... }: let system = "x86_64-linux"; overlay-unstable = final: prev: { unstable = import nixpkgs-unstable { config.allowUnfree = true; localSystem = { inherit system; }; }; }; in { nixosConfigurations = { xv-laptop = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) ./hosts/laptop home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.extraSpecialArgs = { inherit inputs nix-colors ;hostName = "xv-laptop"; }; home-manager.users.xeovalyte.imports = [ ./hosts/laptop/home.nix ]; } ]; }; }; nixosConfigurations = { xv-desktop = nixpkgs.lib.nixosSystem { system = "x86_64-linux"; specialArgs = { inherit inputs; }; modules = [ ({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; }) ./hosts/desktop home-manager.nixosModules.home-manager { home-manager.useGlobalPkgs = true; home-manager.extraSpecialArgs = { inherit inputs nix-colors; hostName = "xv-desktop"; }; home-manager.users.xeovalyte.imports = [ ./hosts/desktop/home.nix ]; } ]; }; }; }; }