feat: use new nur overlay
nur.overlay -> nur.overlays.default
This commit is contained in:
parent
1cd9bccbbb
commit
6e8d58e5ac
1 changed files with 5 additions and 4 deletions
|
@ -28,6 +28,9 @@
|
||||||
"aarch64-linux"
|
"aarch64-linux"
|
||||||
];
|
];
|
||||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||||
|
overlays = [
|
||||||
|
nur.overlays.default
|
||||||
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
nixosConfigurations = {
|
nixosConfigurations = {
|
||||||
|
@ -46,15 +49,13 @@
|
||||||
// {
|
// {
|
||||||
"irl-${system}" = home-manager.lib.homeManagerConfiguration {
|
"irl-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system overlays;
|
||||||
overlays = [ nur.overlay ];
|
|
||||||
};
|
};
|
||||||
modules = [ ./home/irl.nix ];
|
modules = [ ./home/irl.nix ];
|
||||||
};
|
};
|
||||||
"irl-gui-${system}" = home-manager.lib.homeManagerConfiguration {
|
"irl-gui-${system}" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system overlays;
|
||||||
overlays = [ nur.overlay ];
|
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./home/irl.nix
|
./home/irl.nix
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue