lots of things (insanely good commit msg ik)

This commit is contained in:
xunuwu 2024-11-05 09:15:11 +01:00
parent 37bf3c37a4
commit aac7aed59f
Signed by: xun
SSH key fingerprint: SHA256:Uot/1WoAjWAeqLOHA5vYy4phhVydsH7jCPmBjaPZfgI
16 changed files with 508 additions and 101 deletions

View file

@ -5,7 +5,6 @@
}: {
imports = [
self.homeManagerModules.xun
inputs.small-nvim.homeManagerModules.small-nvim
../../editors/emacs.nix
# ../../terminal/shell/zsh.nix
# ../../terminal/programs
@ -15,14 +14,6 @@
];
xun = {
small-nvim = {
enable = true;
colorscheme = {
name = "dayfox";
package = "EdenEast/nightfox.nvim";
};
wakatime.enable = false;
};
develop = {
enable = true;
lang = {

View file

@ -6,7 +6,6 @@
}: {
imports = [
self.homeManagerModules.xun
inputs.small-nvim.homeManagerModules.small-nvim
./kanshi.nix
./defaults.nix
@ -72,16 +71,10 @@
../../services/system/polkit-agent.nix
../../services/system/udiskie.nix # although i dont need this for usb memory, it is quite convenient for flashing qmk
];
home.packages = [inputs.nvim-nix.packages.${pkgs.system}.default];
xun = let
enabled = {enable = true;};
in {
small-nvim = {
enable = true;
colorscheme = {
name = "carbonfox";
package = "EdenEast/nightfox.nvim";
};
};
desktop = {
xdg = enabled;
};
@ -99,6 +92,7 @@
c = enabled;
csharp = enabled;
zig = enabled;
lua = enabled;
};
};
gaming = {

View file

@ -1,9 +1,9 @@
{pkgs, ...}: {
home.packages = with pkgs; [
vesktop
# (discord.override {
# withOpenASAR = true;
# })
(discord.override {
withOpenASAR = true;
})
];
# services.arrpc.enable = true; # RPC with vesktop (disabled since it uses way more cpu than is reasonable for such a program)
}