unstable: update to correect standard when using flakes

This commit is contained in:
Aaron Honeycutt 2024-02-12 09:32:55 -07:00
parent 1c02debafa
commit 40d89ce488

View file

@ -1,17 +1,7 @@
{ config, pkgs, ...}: { unstable, config, pkgs, ... }:
let
unstable = import
(builtins.fetchTarball https://github.com/nixos/nixpkgs/tarball/master)
# reuse the current configuration
{ config = config.nixpkgs.config; };
in
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages = [
unstable.rustc unstable.legacyPackages."${pkgs.system}".rustc
unstable.just
unstable.cosmic-icons
unstable.cosmic-settings
]; ];
} }