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

25 lines
463 B
Nix
Raw Normal View History

2023-08-21 10:28:23 -05:00
{ pkgs, ... }:
{
greg = {
development = true;
gui = true;
sway = false;
2024-10-22 13:07:49 -05:00
gnome = false;
vscodium = true;
};
2024-04-05 10:59:30 -05:00
2024-12-10 09:57:19 -06:00
home = {
file.".config/libvirt/qemu.conf".text = ''
nvram = [ "/run/libvirt/nix-ovmf/OVMF_CODE.fd:/run/libvirt/nix-ovmf/OVMF_VARS.fd" ]
'';
packages = with pkgs; [
(mumble.override { pulseSupport = true; })
#logseq
];
};
programs.xonsh.sessionVariables.EFI_DIR = "${pkgs.OVMF.fd}/FV/";
2023-08-21 10:28:23 -05:00
}