mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-15 04:44:03 +01:00
1ad4e2d4af
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/.
35 lines
517 B
Nix
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
|
|
];
|
|
}
|