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

@@ -20,6 +20,7 @@
enable = true;
};
};
consoleLogLevel = 3;
plymouth.enable = true;
};
@@ -62,6 +63,7 @@
sudo.extraConfig = ''
Defaults insults
'';
polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
if (action.id == "org.libvirt.unix.manage" &&
@@ -79,6 +81,7 @@
storageDriver = "btrfs";
enableOnBoot = true;
};
libvirtd = {
enable = true;
extraConfig = ''
@@ -87,6 +90,7 @@
onBoot = "ignore";
};
spiceUSBRedirection.enable = true;
};
@@ -104,6 +108,7 @@
"input"
"dialout"
];
shell = pkgs.zsh;
#packages = with pkgs; [ ];
};
@@ -113,10 +118,12 @@
NIXOS_OZONE_WL = "1";
LIBVIRT_DEFAULT_URI = "qemu:///system";
};
systemPackages = [
pkgs.libheif
pkgs.libheif.out
];
pathsToLink = [ "share/thumbnailers" ];
};
@@ -163,6 +170,7 @@
"flakes"
"nix-command"
];
warn-dirty = false;
};

View File

@@ -7,6 +7,7 @@
url = "github:qarmin/czkawka";
flake = false;
};
naersk = {
url = "github:nix-community/naersk";
inputs.nixpkgs.follows = "nixpkgs";

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";
};
};
}