Compare commits
No commits in common. "38daf97f2a7df30d448ccea89e76e12a5cfdb945" and "64cb83cddb87dfe30fa95daadf84b24c29f8a9fc" have entirely different histories.
38daf97f2a
...
64cb83cddb
2 changed files with 11 additions and 11 deletions
3
.github/workflows/build-and-cache.yml
vendored
3
.github/workflows/build-and-cache.yml
vendored
|
@ -11,7 +11,6 @@ jobs:
|
|||
- .#attic-server
|
||||
- .#conduwuit
|
||||
- "github:cything/nixpkgs/9a35d495d2f49eee003b57265228844bb48c933e#nixosTests.garage.with-3node-replication1_x"
|
||||
- ".#nixosConfigurations.ytnix.config.system.build.images.iso"
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: DeterminateSystems/nix-installer-action@main
|
||||
|
@ -29,4 +28,4 @@ jobs:
|
|||
cache: ${{ vars.ATTIC_CACHE }}
|
||||
token: ${{ secrets.ATTIC_TOKEN }}
|
||||
- uses: actions/checkout@v4
|
||||
- run: nix build '${{ matrix.package }}' --show-trace -L
|
||||
- run: nix build '${{ matrix.package }}'
|
||||
|
|
11
flake.nix
11
flake.nix
|
@ -87,17 +87,14 @@
|
|||
};
|
||||
};
|
||||
|
||||
flake =
|
||||
flake = {
|
||||
nixosConfigurations =
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
system = "x86_64-linux";
|
||||
overlays = import ./overlay;
|
||||
};
|
||||
in
|
||||
{
|
||||
nixosConfigurations =
|
||||
let
|
||||
lib = nixpkgs.lib;
|
||||
in
|
||||
{
|
||||
|
@ -143,6 +140,10 @@
|
|||
};
|
||||
homeConfigurations =
|
||||
let
|
||||
pkgs = import nixpkgs {
|
||||
config.allowUnfree = true;
|
||||
system = "x86_64-linux";
|
||||
};
|
||||
lib = home-manager.lib;
|
||||
in
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue