add some of the config from the server to the repo

This commit is contained in:
Chris Kruining 2024-07-15 17:32:47 +02:00
parent 9a935f8431
commit e63d103cc8
7 changed files with 70 additions and 59 deletions

View file

@ -12,6 +12,7 @@
zed-editor
corepack_22
bun
nano
];
users.defaultUserShell = pkgs.zsh;
@ -31,8 +32,22 @@
(nerdfonts.override { fonts = [ "FiraCode" "DroidSansMono" ]; })
];
};
programs.zsh.enable = true;
programs.starship.enable = true;
}
programs.nano = {
enable = true;
syntaxHighlight = true;
nanorc = ''
set autoindent
set jumpyscrolling
set linenumbers
set mouse
set saveonexit
set smarthome
set tabstospaces
set tabsize 2
'';
};
}