Merge branch 'master' of github.com:vleeuwenmenno/dotfiles

This commit is contained in:
2024-02-21 15:22:41 +01:00
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
];
};
@@ -42,6 +42,17 @@
includes = [ { path = "~/.dotfiles/config/gitconfig"; } ];
};
ssh = {
enable = true;
matchBlocks = {
server = {
port = 22;
hostname = "192.168.86.254";
user = "menno";
};
};
};
zsh = {
enable = true;