common: provide a pinned nixpkgs on all infra machines
This commit is contained in:
parent
4e869a9f43
commit
70e608a8f7
|
@ -1,10 +1,11 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./admins.nix
|
./admins.nix
|
||||||
./raito-vm.nix
|
|
||||||
./raito-proxy-aware-nginx.nix
|
|
||||||
./base-server.nix
|
./base-server.nix
|
||||||
./sysadmin
|
|
||||||
./hardening.nix
|
./hardening.nix
|
||||||
|
./nix.nix
|
||||||
|
./raito-proxy-aware-nginx.nix
|
||||||
|
./raito-vm.nix
|
||||||
|
./sysadmin
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
14
common/nix.nix
Normal file
14
common/nix.nix
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
{
|
||||||
|
nix.extraOptions = ''
|
||||||
|
experimental-features = nix-command flakes
|
||||||
|
'';
|
||||||
|
|
||||||
|
# Provision a useful nixpkgs in NIX_PATH and flake registry on infra
|
||||||
|
# machines.
|
||||||
|
nixpkgs.flake = {
|
||||||
|
source = lib.cleanSource pkgs.path;
|
||||||
|
setNixPath = true;
|
||||||
|
setFlakeRegistry = true;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue