Files
nixos/home/hosts/jude/default.nix
T

18 lines
296 B
Nix
Raw Normal View History

2023-08-21 10:28:23 -05:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
(mumble.override { pulseSupport = true; })
#logseq
];
greg = {
development = true;
gui = true;
sway = false;
gnome = true;
vscodium = true;
};
2024-04-05 10:59:30 -05:00
programs.xonsh.sessionVariables.EFI_DIR = "${pkgs.OVMF.fd}/FV/";
2023-08-21 10:28:23 -05:00
}