19 lines
250 B
Nix
19 lines
250 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../fuzzel
|
|
../../mako
|
|
../../shikane
|
|
../../waybar
|
|
];
|
|
|
|
home = {
|
|
file.".config/niri/config.kdl".source = ./config.kdl;
|
|
packages = with pkgs; [
|
|
wl-clipboard
|
|
wlsunset
|
|
];
|
|
};
|
|
}
|