15 lines
191 B
Nix
15 lines
191 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
{
|
|
# imports = [ ./niri-switcher.nix ];
|
|
|
|
home.packages = with pkgs; [
|
|
niri
|
|
xwayland-satellite
|
|
];
|
|
|
|
xdg.configFile."niri/config.kdl".source = ./config.kdl;
|
|
}
|