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

18 lines
277 B
Nix
Raw Normal View History

2023-08-21 10:28:23 -05:00
{ pkgs, ... }:
{
2023-12-12 11:48:48 -06:00
home.packages = with pkgs; [
(mumble.override { pulseSupport = true; })
2024-07-31 22:56:37 -05:00
#logseq
2023-11-17 08:33:03 -06:00
];
2024-07-31 15:20:26 -05:00
greg = {
2024-08-04 19:58:20 -05:00
development = true;
2024-07-31 15:20:26 -05:00
gui = true;
sway = false;
2024-08-15 21:12:08 -05:00
gnome = true;
2024-07-31 15:20:26 -05:00
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
}