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