nixos/home-manager/headless.nix

17 lines
260 B
Nix
Raw Normal View History

2022-02-21 11:36:12 +01:00
{ inputs, custom, pkgs, ... }:
2022-01-01 15:26:53 +01:00
{
imports = [
(import ./common { inherit custom inputs; })
2022-01-01 15:26:53 +01:00
./software/git
./software/vim
2022-04-20 11:39:59 +02:00
./software/starship
2022-01-01 15:26:53 +01:00
];
programs.git.userEmail = "andreas@zweili.ch";
programs.bash = {
enable = true;
};
}