add management role

This commit is contained in:
Andreas Zweili 2022-04-11 17:02:23 +02:00
parent 279e1770ec
commit a13fe37234
2 changed files with 17 additions and 1 deletions

View File

@ -90,7 +90,7 @@
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.${custom.username}.imports = [
(import ./home-manager/headless.nix { inherit custom pkgs inputs; })
(import ./home-manager/management.nix { inherit custom pkgs inputs; })
];
}
]);

View File

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