feat(apps): add vial to the application list
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-10-13 03:38:03 +05:30
parent 5c205b6245
commit 434911d2dc
2 changed files with 5 additions and 1 deletions

View File

@@ -19,6 +19,7 @@ lib.optionalAttrs device.hasGui {
./jellyflix.nix
./kicad.nix
./kitty.nix
./lmstudio.nix
./mpv.nix
./neovide.nix
./nextcloud.nix
@@ -36,6 +37,6 @@ lib.optionalAttrs device.hasGui {
./zathura.nix
./zed.nix
./zen.nix
./lmstudio.nix
./vial.nix
];
}

3
home/apps/vial.nix Normal file
View File

@@ -0,0 +1,3 @@
{pkgs, ...}: {
home.packages = with pkgs; [vial];
}