Building?
This commit is contained in:
parent
9237779561
commit
741d9b5b6a
6 changed files with 36 additions and 58 deletions
7
.github/workflows/check.yml
vendored
7
.github/workflows/check.yml
vendored
|
@ -1,4 +1,3 @@
|
||||||
|
|
||||||
name: "Check & Build (with Cachix)"
|
name: "Check & Build (with Cachix)"
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
|
@ -12,7 +11,7 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v13
|
- uses: cachix/install-nix-action@v13
|
||||||
with:
|
with:
|
||||||
install_url: https://nixos-nix-install-tests.cachix.org/serve/8d8xah1f6ypccpmw9cfsl8ziw1chj4cl/install
|
install_url: https://nixos-nix-install-tests.cachix.org/serve/8d8xah1f6ypccpmw9cfsl8ziw1chj4cl/install
|
||||||
install_options: '--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve'
|
install_options: "--tarball-url-prefix https://nixos-nix-install-tests.cachix.org/serve"
|
||||||
extra_nix_config: >
|
extra_nix_config: >
|
||||||
experimental-features = nix-command flakes
|
experimental-features = nix-command flakes
|
||||||
system-features = nixos-test benchmark big-parallel kvm recursive-nix
|
system-features = nixos-test benchmark big-parallel kvm recursive-nix
|
||||||
|
@ -33,8 +32,8 @@ jobs:
|
||||||
- uses: cachix/cachix-action@v10
|
- uses: cachix/cachix-action@v10
|
||||||
with:
|
with:
|
||||||
name: aciceri-fleet
|
name: aciceri-fleet
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
||||||
- run: sed -i 's/#\(.*checks.aarch64.*\)/\1/g' flake.nix # disabling aarch64 outputs
|
- run: sed 's/#\(.*\)/\1/g' flake.nix # disabling outputs unsupported inside the GitHub action
|
||||||
- run: nix -Lv flake check
|
- run: nix -Lv flake check
|
||||||
- run: nix -Lv build ".#nixosConfigurations.pc.config.system.build.toplevel"
|
- run: nix -Lv build ".#nixosConfigurations.pc.config.system.build.toplevel"
|
||||||
- run: nix -Lv develop -c echo OK
|
- run: nix -Lv develop -c echo OK
|
||||||
|
|
|
@ -182,9 +182,11 @@
|
||||||
}
|
}
|
||||||
// {
|
// {
|
||||||
budModules = { devos = import ./bud; };
|
budModules = { devos = import ./bud; };
|
||||||
# checks.aarch64-linux = { }; # this line will be uncommented by Github Action in order since it can't build aarch64 derivations
|
|
||||||
}
|
# checks.aarch64-linux = { }; # ga-uncomment
|
||||||
// {
|
# checks.x86_64-darwin = { }; # ga-uncomment
|
||||||
|
# packages.x86_64-darwin = { }; # ga-uncomment
|
||||||
|
|
||||||
darwinConfigurations."mbp" = darwin.lib.darwinSystem {
|
darwinConfigurations."mbp" = darwin.lib.darwinSystem {
|
||||||
system = "x86_64-darwin";
|
system = "x86_64-darwin";
|
||||||
modules = [ home.darwinModules.home-manager ./hosts/mbp ];
|
modules = [ home.darwinModules.home-manager ./hosts/mbp ];
|
||||||
|
|
|
@ -2,7 +2,5 @@ final: prev: {
|
||||||
# keep sources this first
|
# keep sources this first
|
||||||
sources = prev.callPackage (import ./_sources/generated.nix) { };
|
sources = prev.callPackage (import ./_sources/generated.nix) { };
|
||||||
customEmacs = prev.callPackage (import ./emacs) { };
|
customEmacs = prev.callPackage (import ./emacs) { };
|
||||||
ungoogled-chromium = import ./ungoogled-chromium { inherit prev; };
|
|
||||||
vscodium = import ./vscodium { inherit prev; };
|
|
||||||
# then, call packages with `final.callPackage`
|
# then, call packages with `final.callPackage`
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +0,0 @@
|
||||||
{ prev, ... }:
|
|
||||||
|
|
||||||
prev.runCommandNoCC "wrap-chromium"
|
|
||||||
{ buildInputs = with prev.pkgs; [ makeWrapper ]; }
|
|
||||||
''
|
|
||||||
makeWrapper ${prev.pkgs.chromium}/bin/chromium $out/bin/chromium \
|
|
||||||
--add-flags "--enable-features=UseOzonePlatform" \
|
|
||||||
--add-flags "--ozone-platform=wayland"
|
|
||||||
ln -sf ${prev.pkgs.chromium}/share $out/share
|
|
||||||
''
|
|
|
@ -1,10 +0,0 @@
|
||||||
{ prev, ... }:
|
|
||||||
|
|
||||||
prev.runCommandNoCC "codium"
|
|
||||||
{ buildInputs = with prev.pkgs; [ makeWrapper ]; }
|
|
||||||
''
|
|
||||||
makeWrapper ${prev.pkgs.vscodium}/bin/codium $out/bin/codium \
|
|
||||||
--add-flags "--enable-features=UseOzonePlatform" \
|
|
||||||
--add-flags "--ozone-platform=wayland"
|
|
||||||
ln -sf ${prev.pkgs.vscodium}/share $out/share
|
|
||||||
''
|
|
|
@ -12,7 +12,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
python-language-server
|
|
||||||
python
|
python
|
||||||
fd
|
fd
|
||||||
ag
|
ag
|
||||||
|
@ -29,5 +28,5 @@
|
||||||
mimeType = "x-scheme-handler/org-protocol";
|
mimeType = "x-scheme-handler/org-protocol";
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
];
|
] ++ (if pkgs.system == "x86_64-linux" then [ python-language-server ] else [ ]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue