{ description = "Moe.OS"; inputs = { nixpkgs.url = "nixpkgs/nixos-unstable"; nixpkgs-stable.url = "nixpkgs/release-24.05"; home-manager.url = "github:nix-community/home-manager/master"; home-manager.inputs.nixpkgs.follows = "nixpkgs"; jovian.url = "github:Jovian-Experiments/Jovian-NixOS/development"; }; outputs = { self,nixpkgs,nixpkgs-stable, home-manager, jovian, ...}: let lib = nixpkgs.lib; system = "x86_64-linux"; pkgs = import nixpkgs {inherit system; config.allowUnfree = true; }; pkgs-stable = import nixpkgs-stable {inherit system; config.allowUnfree = true; }; in { nixosConfigurations = { computer-mo = nixpkgs.lib.nixosSystem { inherit system; modules = [ ./configuration.nix jovian.nixosModules.default ]; specialArgs = { inherit pkgs-stable; }; }; }; homeConfigurations = { mo = home-manager.lib.homeManagerConfiguration { inherit pkgs; modules = [./home.nix]; extraSpecialArgs = { inherit pkgs-stable; }; }; }; }; }