baremetal desktop

This commit is contained in:
Xory 2025-09-07 19:23:02 +03:00
parent 4963a2bd03
commit 6e817ea9a8
4 changed files with 350 additions and 0 deletions

51
hosts/voidspear/home.nix Normal file
View file

@ -0,0 +1,51 @@
{ config, pkgs, ... }:
{
home.username = "xory";
home.homeDirectory = "/home/xory";
home.packages = with pkgs; [
neovim
fastfetch
firefox
git
cava
kdePackages.qtwebsockets
(python313.withPackages (python-pkgs: [
python313Packages.websockets
python313Packages.requests # basic python test env
]))
signal-desktop-bin
simplex-chat-desktop
qbittorrent
ffmpeg
yt-dlp
];
home.file = {
".config/nvim/init.lua" = {
enable = true;
source = ./config/nvim/init.lua;
};
};
programs.zsh = {
enable = true;
enableCompletion = true;
shellAliases = {
"rebuild" = "sudo nixos-rebuild switch --flake ~/dots";
};
syntaxHighlighting.enable = true;
};
programs.starship.enable = true;
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
font = {
name = "Inconsolata Nerd Font";
package = pkgs.nerd-fonts.inconsolata;
};
settings.background_opacity = 0.8;
};
home.stateVersion = "25.05";
}