1
0
Fork 0

move atuin from nixpkgs to its flake

This commit is contained in:
cătălin 2026-03-26 12:04:43 +01:00
commit ab80a0d257
No known key found for this signature in database
7 changed files with 166 additions and 238 deletions

View file

@ -9,6 +9,7 @@
url = "github:nix-community/home-manager/release-25.11";
inputs.nixpkgs.follows = "nixpkgs";
};
atuin.url = "github:atuinsh/atuin/v18.13.3";
};
outputs = { self, nixpkgs, nix-flatpak, systems, home-manager, ... } @ inputs: let
@ -21,6 +22,9 @@
import nixpkgs {
inherit system;
config.allowUnfree = true;
overlays = [
inputs.atuin.overlays.default
];
}
);
@ -34,6 +38,9 @@
modules = [
nix-flatpak.nixosModules.nix-flatpak
./hosts/limgrave/nixos
({ ... }: {
nixpkgs.overlays = [ inputs.atuin.overlays.default ];
})
];
};
};
@ -48,4 +55,4 @@
};
};
};
}
}