2026-04-26 13:53:27 +02:00
|
|
|
{ config, ... }:
|
|
|
|
|
let
|
|
|
|
|
hasGui = config.services.dbus.implementation == "dbus";
|
2026-04-28 08:43:16 +02:00
|
|
|
in
|
2026-03-30 00:20:36 +02:00
|
|
|
{
|
|
|
|
|
imports = [
|
|
|
|
|
./direnv.nix
|
2026-05-24 13:09:09 +02:00
|
|
|
./java.nix
|
2026-03-30 00:20:36 +02:00
|
|
|
./packages.nix
|
|
|
|
|
./virt-manager.nix
|
|
|
|
|
];
|
|
|
|
|
|
2026-04-26 13:53:27 +02:00
|
|
|
programs.wireshark.enable = hasGui;
|
2026-04-04 18:23:05 +02:00
|
|
|
|
2026-03-30 00:20:36 +02:00
|
|
|
home-manager.sharedModules = [
|
|
|
|
|
./home
|
|
|
|
|
];
|
|
|
|
|
}
|