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

15 lines
205 B
Nix
Raw Normal View History

2023-08-21 10:28:23 -05:00
{ pkgs, ... }:
{
2023-08-23 14:58:38 -05:00
imports = [
../../vscodium.nix
];
2023-12-12 11:48:48 -06:00
home.packages = with pkgs; [
(mumble.override { pulseSupport = true; })
2024-01-23 14:46:59 -06:00
logseq
2023-11-17 08:33:03 -06:00
];
2024-02-26 11:39:56 -06:00
greg.gui = true;
2024-03-11 09:50:12 -05:00
greg.sway = false;
greg.gnome = false;
2023-08-21 10:28:23 -05:00
}