From 7f1ac023f56893f5d3a0930b8655a33448502b41 Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Fri, 8 Feb 2019 23:54:37 +0100 Subject: [PATCH] nix/home-manager: pin version --- nix/home-manager/profiles/common.nix | 2 +- nix/os/profiles/common/pkg.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/home-manager/profiles/common.nix b/nix/home-manager/profiles/common.nix index ed3daed..cb36bbb 100644 --- a/nix/home-manager/profiles/common.nix +++ b/nix/home-manager/profiles/common.nix @@ -5,7 +5,7 @@ let in { programs.home-manager.enable = true; - programs.home-manager.path = https://github.com/rycee/home-manager/archive/master.tar.gz; + programs.home-manager.path = https://github.com/rycee/home-manager/archive/445c0b1482c38172a9f8294ee16a7ca7462388e5.tar.gz; nixpkgs.overlays = [ (import ../../overlay.nix) diff --git a/nix/os/profiles/common/pkg.nix b/nix/os/profiles/common/pkg.nix index 720fcd8..6711a80 100644 --- a/nix/os/profiles/common/pkg.nix +++ b/nix/os/profiles/common/pkg.nix @@ -2,7 +2,7 @@ { imports = [ - "${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "master"; }}/nixos" + "${builtins.fetchGit { url = "https://github.com/rycee/home-manager.git"; ref = "445c0b1482c38172a9f8294ee16a7ca7462388e5"; }}/nixos" ]; home-manager.users.root = import ../../../home-manager/configuration/text-minimal.nix;