Skip to content

Commit

Permalink
add new host
Browse files Browse the repository at this point in the history
  • Loading branch information
sweenu committed Mar 15, 2024
1 parent 79b9fe9 commit f5fdf43
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions hosts/benoni/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ config, suites, ... }:

{
imports = suites.base;

wsl = {
enable = true;
};

services = {
avahi.enable = true;
fprintd.enable = true;
};

time.timeZone = config.vars.timezone;

virtualisation.docker = {
enable = true;
enableOnBoot = false;
};

age.identityPaths = [ "${config.vars.home}/.ssh/id_ed25519" ];

home-manager.users."${config.vars.username}" = {
home.file.".ssh/id_ed25519.pub".text = config.vars.sshPublicKey;

# services.unison = {
# enable = true;
# pairs.calibre.roots = [
# "${config.vars.home}/books"
# "ssh://root@najdorf//opt/calibre/data"
# ];
# };
};
}

0 comments on commit f5fdf43

Please sign in to comment.