Formatting + misc changes

This commit is contained in:
2026-03-12 00:15:38 +01:00
parent 6ff3ca400b
commit d30200f081
14 changed files with 60 additions and 43 deletions

View File

@@ -10,6 +10,5 @@
./packages.nix
./programs.nix
./services.nix
./vm.nix
];
}

View File

@@ -49,7 +49,7 @@
python = {
symbol = "󰌠";
format = "[](fg:#4B8BBE)[$symbol( $virtualenv )$version](bg:#4B8BBE fg:#FFFFFF)[](fg:#4B8BBE) ";
format = "[](fg:#4B8BBE)[$symbol $virtualenv $version](bg:#4B8BBE fg:#FFFFFF)[](fg:#4B8BBE) ";
};
nodejs = {

View File

@@ -50,8 +50,6 @@
zstyle ':completion:*:(ssh|scp|rsync):*:hosts-ipaddr' ignored-patterns '^(<->.<->.<->.<->|(|::)([[:xdigit:].]##:(#c,2))##(|%*))' '127.0.0.<->' '255.255.255.255' '::1' 'fe80::*'
zstyle ':completion:*' matcher-list "" 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' '+l:|?=** r:|?=**'
eval "$(direnv hook zsh)"
# Path Management
export PATH="$HOME/.local/bin:/usr/local/LinkServer/:$PATH"

View File

@@ -53,7 +53,6 @@
curl
fet.packages.${pkgs.stdenv.hostPlatform.system}.default
ddcutil
direnv
discord
distrobox
docker-buildx

View File

@@ -56,6 +56,11 @@
];
};
direnv = {
enable = true;
enableZshIntegration = true;
};
weylus.enable = true;
gamescope.enable = true;
virt-manager.enable = true;

View File

@@ -1,23 +0,0 @@
{
lib,
...
}:
{
virtualisation.vmVariant = {
virtualisation.memorySize = 8192;
virtualisation.cores = 4;
virtualisation.qemu.options = [
"-device virtio-vga-gl"
"-display gtk,gl=on"
"-cpu host"
];
users.users.jax.password = "nixos";
services.displayManager.autoLogin = {
enable = true;
user = "jax";
};
};
}