Init oldie PC (Old-materusPC previously)

This commit is contained in:
2026-06-13 22:45:05 +02:00
parent bc3fa6788b
commit 1401ddc71c
8 changed files with 536 additions and 44 deletions
@@ -0,0 +1,49 @@
{ pkgs, ... }:
{
home.stateVersion = "26.05";
mkk.neovim.enable = true;
home.packages = with pkgs; [
neovide
obsidian
git-crypt
telegram-desktop
discord
spotify
remmina
mesa-demos
vulkan-tools
nixfmt
curl
wget
python3
packwiz
ani-cli
mpv
kitty
keepassxc
moonlight-qt
wezterm
];
programs.vscode = {
enable = true;
mutableExtensionsDir = true;
};
programs.git = {
enable = true;
lfs.enable = true;
settings = {
user.email = "materus@podkos.pl";
user.name = "materus";
commit.gpgsign = true;
gpg.format = "ssh";
};
signing.signByDefault = true;
signing.key = "/mkk/config/extra-files/ssh/materus.pub";
};
}