13 lines
272 B
Nix
13 lines
272 B
Nix
{
|
|
pkgs,
|
|
config,
|
|
...
|
|
}: {
|
|
home.packages = with pkgs; [
|
|
bibata-cursors
|
|
];
|
|
home.file = {
|
|
".config/niri/config.kdl".source = config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/dev/personal/nixos/modules/home-manager/niri/config.kdl";
|
|
};
|
|
}
|