mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 03:04:03 -06:00
17 lines
351 B
Nix
17 lines
351 B
Nix
{ 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; [
|
|
unstable.rustc
|
|
unstable.just
|
|
unstable.cosmic-icons
|
|
unstable.cosmic-settings
|
|
];
|
|
}
|