From 25c215ebcc782bb0ef9e14bcc882d28a92efc373 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Sun, 16 Sep 2018 18:28:38 +0200 Subject: [PATCH] steveej-laptop: libvirt and nix from nixos-unstable --- nixos-configuration/steveej-laptop/pkg.nix | 3 +++ nixos-configuration/steveej-laptop/system.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos-configuration/steveej-laptop/pkg.nix b/nixos-configuration/steveej-laptop/pkg.nix index 0905bbc..334036d 100644 --- a/nixos-configuration/steveej-laptop/pkg.nix +++ b/nixos-configuration/steveej-laptop/pkg.nix @@ -4,6 +4,7 @@ let gitpkgs = import /home/steveej/src/github/NixOS/nixpkgs {}; + unstablepkgs = import {}; in { @@ -23,6 +24,8 @@ in # }; # }); + libvirt = unstablepkgs.libvirt; + myLinuxPackages = pkgs.recurseIntoAttrs (pkgs.linuxPackagesFor (pkgs.linux_latest.override { kernelPatches = pkgs.linux_latest.kernelPatches ++ [ diff --git a/nixos-configuration/steveej-laptop/system.nix b/nixos-configuration/steveej-laptop/system.nix index 82b7b85..869a015 100644 --- a/nixos-configuration/steveej-laptop/system.nix +++ b/nixos-configuration/steveej-laptop/system.nix @@ -23,7 +23,7 @@ rec { nix.daemonNiceLevel = 19; nix.daemonIONiceLevel = 7; - nix.package = pkgs.nixUnstable; + nix.package = unstablepkgs.nixStable; nix.useSandbox = true;