feat: kernel 6.13, emily's custom udev rule for passing through devices to vm, various app changes

This commit is contained in:
Evar 2025-01-31 22:38:03 -05:00
parent 9ac1768033
commit 3120f90b5d
8 changed files with 129 additions and 37 deletions

27
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "nixos-rebuild switch",
"type": "shell",
"command": "nixos-rebuild switch --flake .#atreus --use-remote-sudo",
"detail": "Switches to the current config with use remote sudo.",
"promptOnClose": true,
"presentation": {
"echo": false,
"reveal": "always",
"revealProblems": "never",
"close": true,
"focus": true,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"runOptions": {
"instanceLimit": 1
}
}
]
}