14 lines
274 B
Nix
14 lines
274 B
Nix
|
{ inputs, lib, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
home-manager.users.tdpeuter = { pkgs, ... }: {
|
||
|
packages = with pkgs; [
|
||
|
alacritty
|
||
|
];
|
||
|
|
||
|
file = {
|
||
|
".config/alacritty".source = ../../stow/alacritty/.config/alacritty;
|
||
|
};
|
||
|
};
|
||
|
}
|