dot_testing/boxes/phone/default.nix

33 lines
458 B
Nix
Raw Permalink Normal View History

2024-02-09 23:33:03 -06:00
{ config, lib, pkgs, ... }:
{
imports = [
./bootstrap.nix
];
home-manager = {
backupFileExtension = "hm-bak";
useGlobalPkgs = true;
config = ./home.nix;
};
environment.packages = with pkgs; [
2024-02-10 18:45:06 -06:00
vdirsyncer
msmtp
khal
todoman
neomutt
khal
2024-02-10 18:46:52 -06:00
rbw
2024-02-10 18:49:00 -06:00
isync
2024-02-09 23:33:03 -06:00
git
tmux
hostname
];
environment.etcBackupExtension = ".bak";
system.stateVersion = "23.05";
time.timeZone = "America/Chicago";
}