dot_testing/boxes/phone/default.nix

33 lines
458 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./bootstrap.nix
];
home-manager = {
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
config = ./home.nix;
};
environment.packages = with pkgs; [
vdirsyncer
msmtp
khal
todoman
neomutt
khal
rbw
isync
git
tmux
hostname
];
environment.etcBackupExtension = ".bak";
system.stateVersion = "23.05";
time.timeZone = "America/Chicago";
}