diff options
author | EuAndreh <eu@euandre.org> | 2019-05-01 11:12:49 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2019-05-01 11:12:49 -0300 |
commit | 9801e4beef805841f641ad78280d61128e66f547 (patch) | |
tree | 5fcec475cc29f976c15846b2cb611701e3f91cda /nixos | |
parent | Use default versions of packages instead of unstable versions. (diff) | |
download | dotfiles-9801e4beef805841f641ad78280d61128e66f547.tar.gz dotfiles-9801e4beef805841f641ad78280d61128e66f547.tar.xz |
Comment definition of pkgsUnstable.
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/configuration.nix | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index d8877bc..2b6576d 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -69,11 +69,11 @@ in environment.systemPackages = let - pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; - pkgs-18-03 = import(pkgs.fetchzip { - url = "https://github.com/NixOS/nixpkgs/archive/18.03.zip"; - sha256 = "0hk4y2vkgm1qadpsm4b0q1vxq889jhxzjx3ragybrlwwg54mzp4f"; - }) {}; + # pkgsUnstable = import(fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixos-unstable.tar.gz) {}; + # pkgs-18-03 = import(pkgs.fetchzip { + # url = "https://github.com/NixOS/nixpkgs/archive/18.03.zip"; + # sha256 = "0hk4y2vkgm1qadpsm4b0q1vxq889jhxzjx3ragybrlwwg54mzp4f"; + # }) {}; timidityWithEvenMoreFormats = with pkgs; timidity.overrideAttrs (oldAttrs: { configureFlags = oldAttrs.configureFlags ++ [ "--enable-audio=vorbis,flac" ]; |