18 lines
312 B
Nix
18 lines
312 B
Nix
{ lib, pkgs, home, ... }:
|
|
{
|
|
imports = [
|
|
../../home/nvim
|
|
../../home/ssh
|
|
../../home/git # needed for flakes
|
|
../../home/vdirsyncer
|
|
../../home/isync
|
|
../../home/khal
|
|
../../home/todoman
|
|
../../home/msmtp
|
|
../../home/neomutt
|
|
../../home/rbw
|
|
];
|
|
|
|
home.stateVersion = "23.05";
|
|
}
|