691fd9e857
Note: not the actual initial commit. I swear I will stop repeatedly force pushing to this single commit eventually ok.
29 lines
476 B
Nix
29 lines
476 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
|
|
./spotify.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" ];
|
|
};
|
|
};
|
|
}
|