Signed-off-by: Menno van Leeuwen <menno@vleeuwen.me>
This commit is contained in:
2024-02-19 18:09:37 +01:00
parent 6e6b402df3
commit fd4dba558a
3 changed files with 23 additions and 3 deletions

View File

@ -1,7 +1,6 @@
{ config, pkgs, ... }:
{
{ config, lib, pkgs, ... }:
{
fonts.fontconfig.enable = true;
home = {
username = "menno";
homeDirectory = "/home/menno";
@ -15,6 +14,7 @@
lsd
zsh
zsh-powerlevel10k
fzf
];
};
@ -35,6 +35,17 @@
includes = [ { path = "~/.dotfiles/config/gitconfig"; } ];
};
ssh = {
enable = true;
matchBlocks = {
server = {
port = 22;
hostname = "192.168.86.254";
user = "menno";
};
};
};
zsh = {
enable = true;