feat: big refactor
This commit is contained in:
parent
2c09c21833
commit
ebedec9768
159 changed files with 1927 additions and 2222 deletions
39
modules/desktop/applications.nix
Normal file
39
modules/desktop/applications.nix
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
lib.mkIf config.bchmnn.gui.enable {
|
||||
|
||||
environment.systemPackages =
|
||||
lib.optionals (config.bchmnn.collections.cli-utils.enable) [
|
||||
pkgs.libnotify # a library that sends desktop notifications to a notification daemon
|
||||
pkgs.xdg-utils # a set of command line tools that assist applications with a variety of desktop integration tasks
|
||||
]
|
||||
++ lib.optionals (config.bchmnn.collections.development.enable) [
|
||||
pkgs.ghidra-bin
|
||||
pkgs.mongodb-compass
|
||||
]
|
||||
++ lib.optionals (lib.elem "sway" config.bchmnn.gui.flavour) [
|
||||
pkgs.qt5.qtwayland
|
||||
pkgs.qt6.qtwayland
|
||||
pkgs.wineWowPackages.waylandFull
|
||||
];
|
||||
|
||||
programs = {
|
||||
kdeconnect.enable = true;
|
||||
ausweisapp = {
|
||||
enable = true;
|
||||
openFirewall = true;
|
||||
};
|
||||
wireshark.enable = config.bchmnn.collections.development.enable;
|
||||
virt-manager.enable = config.bchmnn.collections.virtualisation.enable;
|
||||
};
|
||||
|
||||
services.ratbagd.enable = true;
|
||||
# needed for udiskie
|
||||
services.udisks2.enable = true;
|
||||
# enable gvfs to mount android devices
|
||||
services.gvfs.enable = true;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue