Merge branch 'staging' into 'master'
Staging See merge request steveeJ/infra!11
This commit is contained in:
commit
635dc9c0ee
6 changed files with 12 additions and 7 deletions
|
@ -25,9 +25,6 @@ in {
|
||||||
dropbearStatic = dropbear.override {
|
dropbearStatic = dropbear.override {
|
||||||
enableStatic = true;
|
enableStatic = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
just = pkgs.callPackage ../../pkgs/just.nix {};
|
|
||||||
duplicacy = pkgs.callPackage ../../pkgs/duplicacy {};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
services.hydra = {
|
services.hydra = {
|
||||||
enable = true;
|
enable = false;
|
||||||
hydraURL = "http://localhost:3000"; # externally visible URL
|
hydraURL = "http://localhost:3000"; # externally visible URL
|
||||||
notificationSender = "hydra@${config.networking.hostName}.stefanjunker.de"; # e-mail of hydra service
|
notificationSender = "hydra@${config.networking.hostName}.stefanjunker.de"; # e-mail of hydra service
|
||||||
# a standalone hydra will require you to unset the buildMachinesFiles list to avoid using a nonexistant /etc/nix/machines
|
# a standalone hydra will require you to unset the buildMachinesFiles list to avoid using a nonexistant /etc/nix/machines
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
keys = import ../../../variables/keys.nix;
|
keys = import ../../../variables/keys.nix;
|
||||||
mfcl3770cdw = pkgs.callPackage ../../../pkgs/mfcl3770cdw.nix {};
|
|
||||||
in {
|
in {
|
||||||
|
|
||||||
# TASK: new device
|
# TASK: new device
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
{ ... }:
|
{ ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(import ../../../overlay.nix)
|
||||||
|
];
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./boot.nix
|
./boot.nix
|
||||||
./pkg.nix
|
./pkg.nix
|
||||||
|
|
5
nix/overlay.nix
Normal file
5
nix/overlay.nix
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
self: super: {
|
||||||
|
duplicay = super.callPackage ./pkgs/duplicacy {};
|
||||||
|
mfcl3770cdw = super.callPackage ./pkgs/mfcl3770cdw.nix {};
|
||||||
|
just = super.callPackage ./pkgs/just.nix {};
|
||||||
|
}
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
channels-nixos-stable-path = (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/7e88992a8c7b2de0bcb89182d8686b27bd93e46a.tar.gz);
|
channels-nixos-stable-path = (builtins.fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/7e88992a8c7b2de0bcb89182d8686b27bd93e46a.tar.gz);
|
||||||
channels-nixos-stable = import channels-nixos-stable-path {};
|
channels-nixos-stable = import channels-nixos-stable-path { overlays = [ (import ./nix/overlay.nix) ]; };
|
||||||
|
|
||||||
in
|
in
|
||||||
with channels-nixos-stable;
|
with channels-nixos-stable;
|
||||||
|
@ -10,7 +10,7 @@ stdenv.mkDerivation {
|
||||||
name = "infra-env";
|
name = "infra-env";
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
(with import (channels-nixos-stable-path+"/nixos") { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ])
|
(with import (channels-nixos-stable-path+"/nixos") { configuration = {}; }; with config.system.build; [ nixos-generate-config nixos-install nixos-enter manual.manpages ])
|
||||||
(pkgs.callPackage ./nix/pkgs/just.nix {})
|
just
|
||||||
git-crypt
|
git-crypt
|
||||||
vcsh
|
vcsh
|
||||||
gnupg
|
gnupg
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue