finally got anyrun working, i had forgotten to import inputs to home.nix 💀

This commit is contained in:
Gabriella Bere 2024-08-24 13:22:04 +01:00
parent aa857f5373
commit 6764996241
3 changed files with 43 additions and 40 deletions

View file

@ -17,22 +17,23 @@
};
};
outputs = { self, nixpkgs, stablepkgs, home-manager, ... } @ inputs:
outputs = { self, nixpkgs, stablepkgs, ... } @ inputs:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
stable = stablepkgs.legacyPacakges.x86_64-linux;
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
stable = stablepkgs.legacyPacakges.${system};
in
{
nixosConfigurations.gabbielaptop = nixpkgs.lib.nixosSystem {
specialArgs = { inherit inputs; };
system = "x86_64-linux";
inherit system;
modules = [
# Import configuration modules
./hosts/gabbielaptop/configuration.nix
./modules/nh.nix
./modules/environment.nix
./modules/waydroid.nix
home-manager.nixosModules.default
inputs.home-manager.nixosModules.default
# inputs.anyrun.homeManagerModules.default
];
};