20 lines
299 B
Nix
20 lines
299 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
lib,
|
|
nodeFlake,
|
|
packages',
|
|
...
|
|
}: let
|
|
pkgsUnstable = pkgs.callPackage nodeFlake.inputs.nixpkgs-unstable.outPath {};
|
|
in {
|
|
imports = [
|
|
../profiles/wayland-desktop.nix
|
|
];
|
|
|
|
home.packages = [
|
|
# experimental WMs
|
|
packages'.jay
|
|
packages'.magmawm
|
|
];
|
|
}
|