dot_testing/home/neomutt/default.nix

14 lines
180 B
Nix
Raw Normal View History

{ lib, config, pkgs, home, ... }:
{
2024-03-15 18:51:36 -05:00
home.packages = with pkgs; [
neomutt
];
home.file = {
".config/neomutt/neomuttrc" = {
source = ./neomuttrc;
};
};
}