Compare commits

..

2 Commits

Author SHA1 Message Date
mandlm 01a306d364
feat: add ~/.local/bin to path 2024-09-16 09:14:06 +02:00
mandlm ed83f76126
feat(qemu): use qemu-user instead of qemu 2024-09-16 09:13:08 +02:00
2 changed files with 5 additions and 1 deletions

View File

@ -8,6 +8,10 @@
programs.home-manager.enable = true;
home.sessionPath = [
"$HOME/.local/bin"
];
home.packages = with pkgs; [
wsl-open
xdg-utils

View File

@ -2,6 +2,6 @@
{
home.packages = with pkgs; [
qemu
qemu-user
];
}