mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-04-04 03:01:05 +02:00
mkMachine now uses passed nixpkgs version
This commit is contained in:
parent
43e56879d7
commit
ef07fa6d59
1 changed files with 6 additions and 6 deletions
|
@ -1,15 +1,15 @@
|
||||||
inputs: final: prev:
|
inputs: final: prev:
|
||||||
|
|
||||||
with builtins; with inputs;
|
with builtins;
|
||||||
|
|
||||||
let
|
let
|
||||||
overlay-unstable = arch: final: prev: {
|
overlay-unstable = arch: final: prev: {
|
||||||
unstable = unstable.legacyPackages."${arch}";
|
unstable = inputs.unstable.legacyPackages."${arch}";
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
||||||
mkMachine = { host, host-config, modules, system ? "x86_64-linux" }: nixpkgs.lib.nixosSystem {
|
mkMachine = { host, host-config, modules, nixpkgs ? inputs.nixpkgs, system ? "x86_64-linux" }: nixpkgs.lib.nixosSystem {
|
||||||
lib = final;
|
lib = final;
|
||||||
system = system;
|
system = system;
|
||||||
specialArgs = {
|
specialArgs = {
|
||||||
|
@ -17,10 +17,10 @@ in
|
||||||
};
|
};
|
||||||
modules = builtins.attrValues modules ++ [
|
modules = builtins.attrValues modules ++ [
|
||||||
../base.nix
|
../base.nix
|
||||||
sops-nix.nixosModules.sops
|
inputs.sops-nix.nixosModules.sops
|
||||||
host-config
|
host-config
|
||||||
home-manager.nixosModules.home-manager
|
inputs.home-manager.nixosModules.home-manager
|
||||||
simple-nixos-mailserver.nixosModule
|
inputs.simple-nixos-mailserver.nixosModule
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue