updates; compensate for bio change

This commit is contained in:
Kate 2025-07-07 21:57:09 +02:00
parent becd8adca6
commit a714e9a252
11 changed files with 27 additions and 12 deletions

View file

@ -158,8 +158,6 @@
linuxGuiModuleSet = [ linuxGuiModuleSet = [
nix-flatpak.nixosModules.nix-flatpak nix-flatpak.nixosModules.nix-flatpak
./nixos/dotfiles/vscode.nix
./nixos/packages/gui.nix ./nixos/packages/gui.nix
./nixos/packages/wine.nix ./nixos/packages/wine.nix
./nixos/packages/flatpak.nix ./nixos/packages/flatpak.nix

View file

@ -168,7 +168,7 @@ UseIn=niri'')
services.power-profiles-daemon.enable = lib.mkForce false; services.power-profiles-daemon.enable = lib.mkForce false;
# Enable sound with pipewire. # Enable sound with pipewire.
hardware.pulseaudio.enable = false; services.pulseaudio.enable = false;
security.rtkit.enable = true; security.rtkit.enable = true;
services.pipewire = { services.pipewire = {
enable = true; enable = true;

View file

@ -16,8 +16,10 @@
enable = true; enable = true;
defaultTimeout = 10000; defaultTimeout = 10000;
width = 400; settings = {
height = 200; width = 400;
height = 200;
};
}; };
}; };

View file

@ -146,7 +146,7 @@ in
input = { input = {
# Moving focus with the keyboard should move the mouse. # Moving focus with the keyboard should move the mouse.
warp-mouse-to-focus = true; warp-mouse-to-focus.enable = true;
touchpad = { touchpad = {

View file

@ -18,7 +18,7 @@
extraRules = '' extraRules = ''
# Brother p-touch cube # Brother p-touch cube
SUBSYSTEM == "usb", ATTRS{idVendor} == "04f9", ATTRS{idProduct} == "20af", MODE = "0666" SUBSYSTEM == "usb", ATTRS{idVendor} == "04f9", ATTRS{idProduct} == "20af", GROUP="plugdev", TAG+="uaccess"
# If we have a Apple T2 VHCI, force it to re-start once things are more up. # If we have a Apple T2 VHCI, force it to re-start once things are more up.
# This forces a re-enumeration of the connected devices, and thus makes things like the touch bar work reliably. # This forces a re-enumeration of the connected devices, and thus makes things like the touch bar work reliably.
@ -27,6 +27,9 @@
# Digilent waveforms # Digilent waveforms
ACTION=="add", ATTR{idVendor}=="1443", GROUP="plugdev", TAG+="uaccess" ACTION=="add", ATTR{idVendor}=="1443", GROUP="plugdev", TAG+="uaccess"
ACTION=="add", ATTR{idVendor}=="0403", ATTR{manufacturer}=="Digilent", GROUP="plugdev", TAG+="uaccess", RUN+="${waveforms.adept2-runtime}/sbin/dftdrvdtch %s{busnum} %s{devnum}" ACTION=="add", ATTR{idVendor}=="0403", ATTR{manufacturer}=="Digilent", GROUP="plugdev", TAG+="uaccess", RUN+="${waveforms.adept2-runtime}/sbin/dftdrvdtch %s{busnum} %s{devnum}"
# LibreVNA
SUBSYSTEM == "usb", ATTRS{idVendor} == "1209", ATTRS{idProduct} == "4121", GROUP="plugdev", TAG+="uaccess"
''; '';
}; };

View file

@ -125,7 +125,6 @@ with pkgs;
unzip unzip
unar unar
unrar unrar
deprekages.vja
wget wget
wireshark-cli wireshark-cli
zellij zellij

View file

@ -12,6 +12,9 @@ python3Packages.buildPythonApplication rec {
pname = "oxfs"; pname = "oxfs";
version = "0.5.5"; version = "0.5.5";
pyproject = true;
build-system = [ python3Packages.setuptools ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-iHtUfrf91vr5UOn5vr6679OsGh5xipgbCeCRxluf9Pc="; hash = "sha256-iHtUfrf91vr5UOn5vr6679OsGh5xipgbCeCRxluf9Pc=";

View file

@ -6,7 +6,9 @@
python3Packages.buildPythonPackage rec { python3Packages.buildPythonPackage rec {
pname = "svd2py"; pname = "svd2py";
version = "1.0.2"; version = "1.0.2";
format = "pyproject";
pyproject = true;
build-system = [ python3Packages.setuptools ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;

View file

@ -11,7 +11,10 @@
python3Packages.buildPythonPackage rec { python3Packages.buildPythonPackage rec {
pname = "xonsh"; pname = "xonsh";
version = xonsh.version; version = xonsh.version;
format = "pyproject";
pyproject = true;
build-system = [ python3Packages.setuptools ];
format = null;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = pname; owner = pname;

View file

@ -13,7 +13,9 @@ let
in python3Packages.buildPythonPackage rec { in python3Packages.buildPythonPackage rec {
pname = "xontrib_prompt_bar"; pname = "xontrib_prompt_bar";
version = "0.5.8"; version = "0.5.8";
format = "pyproject";
pyproject = true;
build-system = [ python3Packages.setuptools ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;

View file

@ -20,6 +20,9 @@ in python3Packages.buildPythonPackage rec {
pname = "xontrib_sh"; pname = "xontrib_sh";
version = "0.3.1"; version = "0.3.1";
pyproject = true;
build-system = [ python3Packages.setuptools ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
hash = "sha256-qIr/VKCdcSBrtz/4ttpxV2i/4D9t3hw1D0AuzGA9DMk="; hash = "sha256-qIr/VKCdcSBrtz/4ttpxV2i/4D9t3hw1D0AuzGA9DMk=";