Merge changes from work

This commit is contained in:
Martin
2024-05-17 16:30:29 +02:00
parent 386d856c60
commit 2a2279ee29
10 changed files with 89 additions and 17 deletions

View File

@ -1,8 +1,8 @@
{ config, pkgs, ... }:
{
home.username = "moustachioed";
home.homeDirectory = "/Users/moustachioed";
home.username = "pan";
home.homeDirectory = "/home/pan";
home.stateVersion = "23.11"; # Please read the comment before changing.
@ -10,4 +10,15 @@
userName = "Martin Pander";
userEmail = "martin.pander@knowtion.de";
};
home.packages = with pkgs; [
yaml-language-server
marksman
dockerfile-language-server-nodejs
];
programs.zsh.profileExtra = ''
source $HOME/.profile
'';
}