Compare commits

...

2 commits

Author SHA1 Message Date
cy
38daf97f2a test building iso 2025-01-16 18:50:51 -05:00
cy
91f1a9b552 make it nicer 2025-01-16 18:48:33 -05:00
2 changed files with 11 additions and 11 deletions

View file

@ -11,6 +11,7 @@ jobs:
- .#attic-server - .#attic-server
- .#conduwuit - .#conduwuit
- "github:cything/nixpkgs/9a35d495d2f49eee003b57265228844bb48c933e#nixosTests.garage.with-3node-replication1_x" - "github:cything/nixpkgs/9a35d495d2f49eee003b57265228844bb48c933e#nixosTests.garage.with-3node-replication1_x"
- ".#nixosConfigurations.ytnix.config.system.build.images.iso"
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: DeterminateSystems/nix-installer-action@main - uses: DeterminateSystems/nix-installer-action@main
@ -28,4 +29,4 @@ jobs:
cache: ${{ vars.ATTIC_CACHE }} cache: ${{ vars.ATTIC_CACHE }}
token: ${{ secrets.ATTIC_TOKEN }} token: ${{ secrets.ATTIC_TOKEN }}
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- run: nix build '${{ matrix.package }}' - run: nix build '${{ matrix.package }}' --show-trace -L

View file

@ -87,14 +87,17 @@
}; };
}; };
flake = { flake =
let
pkgs = import nixpkgs {
config.allowUnfree = true;
system = "x86_64-linux";
overlays = import ./overlay;
};
in
{
nixosConfigurations = nixosConfigurations =
let let
pkgs = import nixpkgs {
config.allowUnfree = true;
system = "x86_64-linux";
overlays = import ./overlay;
};
lib = nixpkgs.lib; lib = nixpkgs.lib;
in in
{ {
@ -140,10 +143,6 @@
}; };
homeConfigurations = homeConfigurations =
let let
pkgs = import nixpkgs {
config.allowUnfree = true;
system = "x86_64-linux";
};
lib = home-manager.lib; lib = home-manager.lib;
in in
{ {