{ description = "Home Manager configuration of johno"; inputs = { # Specify the source of Home Manager and Nixpkgs. nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable"; home-manager = { url = "github:nix-community/home-manager"; inputs.nixpkgs.follows = "nixpkgs"; }; system-flake = { type = "git"; url = "file:///etc/nixos"; }; }; outputs = { nixpkgs, home-manager, ... } @inputs : let system = "x86_64-linux"; pkgs = nixpkgs.legacyPackages.${system}; in { homeConfigurations."johno" = home-manager.lib.homeManagerConfiguration { inherit pkgs; # Specify your home configuration modules here, for example, # the path to your home.nix. modules = [ inputs.system-flake.inputs.hyprland.homeManagerModules.default ./home.nix ]; # Optionally use extraSpecialArgs # to pass through arguments to home.nix extraSpecialArgs = { hy3 = inputs.system-flake.inputs.hy3; hyprland = inputs.system-flake.inputs.hyprland; }; }; }; }