nixos/home-manager/headless.nix
2022-05-26 11:07:41 +02:00

18 lines
279 B
Nix

{ inputs, custom, pkgs, ... }:
{
imports = [
(import ./common { inherit custom inputs; })
./software/fzf
./software/git
./software/vim
./software/starship
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
}