dotfiles/modules/home/default.nix
eriedaberrie c40a102032 Initial commit
Note: not the actual initial commit.

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-09-27 23:01:18 -07:00

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" ];
};
};
}