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

I swear I will stop repeatedly force pushing to this single commit eventually
ok.
2024-09-21 00:38:02 -07:00

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