mirror of
https://github.com/zoriya/flake.git
synced 2025-12-06 06:36:19 +00:00
31 lines
600 B
Nix
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";
|
|
}
|