some updates

This commit is contained in:
gwg313 2025-03-17 18:25:13 -04:00
parent e09709c638
commit e9adb6d552
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
6 changed files with 46 additions and 5 deletions

View file

@ -5,6 +5,7 @@
./fuzzel.nix
./kitty.nix
./ghostty.nix
./obs.nix
];
fonts.fontconfig.enable = true;

View file

@ -0,0 +1,15 @@
# A cat clone with syntax highlighting and Git integration.
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
# additional packages to add to gjs's runtime
# extraPackages = with pkgs; [
# gtksourceview
# webkitgtk
# accountsservice
# libdbusmenu-gtk3
# ];
};
}