From fd4e23c50d185a97bc8db359709fb4ccc92bd432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sat, 21 Nov 2020 16:20:13 +0000 Subject: [PATCH] use correct urls for unstable channels lol --- nixos/common.nix | 2 +- nixos/home-other-os.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/common.nix b/nixos/common.nix index 9681f350..da3e4cd5 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: let - unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixpkgs-unstable.tar.gz; + unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz; in { imports = diff --git a/nixos/home-other-os.nix b/nixos/home-other-os.nix index 6af9cf5b..4cb8ca65 100644 --- a/nixos/home-other-os.nix +++ b/nixos/home-other-os.nix @@ -1,7 +1,7 @@ { config, pkgs, ... }: let - unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs-channels/archive/nixpkgs-unstable.tar.gz; + unstableTarball = fetchTarball https://github.com/NixOS/nixpkgs/archive/nixpkgs-unstable.tar.gz; dotfiles = "/home/cyryl/dev/dotfiles"; in {