Files
flake/modules/cli/home.nix
2025-06-05 14:20:13 +02:00

31 lines
600 B
Nix

{
imports = [
./zsh
./tools/git.nix
./tools/jujutsu.nix
./tools/tmux.nix
];
xdg.configFile."nixpkgs/config.nix".text = '' {
allowUnfree = true;
android_sdk.accept_license = true;
}'';
# For virt-manager to detect hypervisor
dconf.settings = {
"org/virt-manager/virt-manager/connections" = {
autoconnect = ["qemu:///system"];
uris = ["qemu:///system"];
};
};
# Use geoclue2 for weather location
dconf.settings = {
"org/gnome/shell/weather" = {
automatic-location = true;
};
};
home.stateVersion = "22.11";
}