nixos/home-manager/headless.nix

16 lines
221 B
Nix
Raw Normal View History

2022-02-16 22:19:13 +01:00
{ inputs, pkgs, ... }:
2022-01-01 15:26:53 +01:00
{
imports = [
2022-02-16 22:19:13 +01:00
(import ./common { inherit inputs; })
2022-01-01 15:26:53 +01:00
./software/git
./software/vim
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
}