dont push ideally/add ereader ci
This commit is contained in:
parent
8ad750ca3a
commit
0751712fbb
|
@ -204,6 +204,7 @@
|
||||||
hydraJobs = {
|
hydraJobs = {
|
||||||
server.${config.server.system} = self.nixosConfigurations.server.config.system.build.toplevel;
|
server.${config.server.system} = self.nixosConfigurations.server.config.system.build.toplevel;
|
||||||
router.${config.router-emmc.system} = self.nixosConfigurations.router-emmc.config.system.build.toplevel;
|
router.${config.router-emmc.system} = self.nixosConfigurations.router-emmc.config.system.build.toplevel;
|
||||||
|
ereader.${config.phone.system} = self.nixosConfigurations.ereader.config.system.build.toplevel;
|
||||||
phone.${config.phone.system} = self.nixosConfigurations.phone.config.system.build.toplevel;
|
phone.${config.phone.system} = self.nixosConfigurations.phone.config.system.build.toplevel;
|
||||||
phone-home.${config.phone.system} = self.homeConfigurations."user@phone".activation-script;
|
phone-home.${config.phone.system} = self.homeConfigurations."user@phone".activation-script;
|
||||||
workstation.${config.nixmsi.system} = self.nixosConfigurations.nixmsi.config.system.build.toplevel;
|
workstation.${config.nixmsi.system} = self.nixosConfigurations.nixmsi.config.system.build.toplevel;
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
unpatchedNixForNixPlugins = pkgs.nixVersions.nix_2_24;
|
# TODO: remove after full update
|
||||||
|
unpatchedNixForNixPlugins = if pkgs?nixVersions.nix_2_25 then pkgs.nixVersions.nix_2_24 else pkgs.nixVersions.nix_2_18;
|
||||||
nixForNixPlugins = unpatchedNixForNixPlugins.overrideAttrs (old: {
|
nixForNixPlugins = unpatchedNixForNixPlugins.overrideAttrs (old: {
|
||||||
patches = (old.patches or [ ]) ++ [ ./rename-nix-plugin-files.patch ];
|
patches = (old.patches or [ ]) ++ [ ./rename-nix-plugin-files.patch ];
|
||||||
# some tests fail on bcachefs due to insufficient permissions
|
# some tests fail on bcachefs due to insufficient permissions
|
||||||
|
|
Loading…
Reference in a new issue