mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-21 00:19:01 +01:00
25 lines
458 B
Nix
25 lines
458 B
Nix
{
|
|
pkgs,
|
|
nixpkgs-stable,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages =
|
|
let
|
|
pkgs-stable = import nixpkgs-stable {
|
|
system = pkgs.system;
|
|
config.allowUnfree = true;
|
|
};
|
|
in
|
|
with pkgs-stable; [
|
|
firefox-wayland
|
|
|
|
# chrome wayland support was broken on nixos-unstable branch, so fallback to stable branch for now
|
|
# https://github.com/swaywm/sway/issues/7562
|
|
google-chrome
|
|
];
|
|
|
|
# programs = {
|
|
# };
|
|
}
|