home-manager/configs: Add macsimum and use SSH extraConfig

This commit is contained in:
2022-02-21 13:19:21 +00:00
parent 953770f339
commit 7180d265c4
5 changed files with 64 additions and 43 deletions

View File

@@ -0,0 +1,19 @@
{
home-manager.homes."jack@macsimum" = {
system = "x86_64-darwin";
nixpkgs = "unstable";
homeDirectory = "/Users/jack";
username = "jack";
configuration = { pkgs, ... }:
{
my = {
deploy.enable = false;
};
programs = {
ssh.enable = false;
};
};
};
}