Files
nixos/home/hosts/jude/default.nix
T
2024-07-31 22:56:37 -05:00

17 lines
256 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
(mumble.override { pulseSupport = true; })
#logseq
];
greg = {
gui = true;
sway = false;
gnome = false;
vscodium = true;
};
programs.xonsh.sessionVariables.EFI_DIR = "${pkgs.OVMF.fd}/FV/";
}