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