diff options
author | EuAndreh <eu@euandre.org> | 2018-07-24 16:34:45 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-24 16:34:45 -0300 |
commit | 27f037774ed65499daae5f3b17cc4017e72e7838 (patch) | |
tree | d54255f9f95e8a1a4681396dd25ab65ece5b2a08 | |
parent | Set =cljr-assume-language-context= to "clj" (diff) | |
download | dotfiles-27f037774ed65499daae5f3b17cc4017e72e7838.tar.gz dotfiles-27f037774ed65499daae5f3b17cc4017e72e7838.tar.xz |
Install Firefox from nixpkgs unstable
-rw-r--r-- | nixos/configuration.nix | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 49badf8..2249bc3 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -65,8 +65,9 @@ freefont_ttf ]; - environment.systemPackages = with pkgs; [ - + environment.systemPackages = + let pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; + in with pkgs; [ ## Personal data tools @@ -228,7 +229,7 @@ thunderbird calibre quodlibet - firefox + pkgsUnstable.firefox emacs tdesktop vlc |