1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-05-02 19:53:07 +00:00
This commit is contained in:
Rae 5e 2024-12-18 16:38:29 -05:00
parent 43e5446472
commit 21ea5fc6b6
6 changed files with 17 additions and 10 deletions

View file

@ -20,6 +20,7 @@
specialArgs = { inherit inputs; };
modules = [
./hosts/qemu/configuration.nix
(import ./overlays)
];
};
};
@ -27,7 +28,10 @@
homeConfigurations.rae = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
extraSpecialArgs = { inherit inputs; };
modules = [ ./home.nix ];
modules = [
./home.nix
(import ./overlays)
];
};
};
}