finally got anyrun working, i had forgotten to import inputs to home.nix 💀
This commit is contained in:
parent
aa857f5373
commit
6764996241
3 changed files with 43 additions and 40 deletions
11
flake.nix
11
flake.nix
|
@ -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
|
||||
];
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue