28 lines
458 B
Nix
28 lines
458 B
Nix
|
{ lib, osConfig, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
# inputs.nur.hmModules.nur
|
||
|
./graphical
|
||
|
./themes
|
||
|
|
||
|
./cli.nix
|
||
|
./email.nix
|
||
|
./fetch.nix
|
||
|
./git.nix
|
||
|
./mpd.nix
|
||
|
./nix.nix
|
||
|
./packages.nix
|
||
|
./shell.nix
|
||
|
];
|
||
|
|
||
|
xdg.enable = true;
|
||
|
|
||
|
dconf.settings = lib.mkIf osConfig.my.virt-manager.enable {
|
||
|
"org/virt-manager/virt-manager/connections" = {
|
||
|
autoconnect = [ "qemu:///system" ];
|
||
|
uris = [ "qemu:///system" ];
|
||
|
};
|
||
|
};
|
||
|
}
|