nix-config/modules/default.nix
Donovan Glover 1ad4e2d4af
meta: Rename applications to modules
This is my attempt at putting all modules in one directory to avoid
having to remember whether a module was a part of applications/,
desktop/, or terminal/.
2023-06-05 11:37:06 -04:00

35 lines
517 B
Nix

{ pkgs, ... }:
{
imports = [
./feh
./kitty
./librewolf
./mpv
./piper
./qutebrowser
./thunar
./zathura
];
virtualisation.vmware.host = {
enable = true;
extraConfig = ''
# Enable 3D acceleration on the host
mks.gl.allowUnsupportedDrivers = "TRUE"
mks.vk.allowUnsupportedDevices = "TRUE"
'';
};
environment.systemPackages = with pkgs; [
audacity
gimp
anki
logseq
mullvad-browser
spek
keepassxc
libreoffice
];
}