infrastructure/nixos/hosts/thalassa/aoife/home/default.nix
2023-04-25 10:04:50 +02:00

15 lines
333 B
Nix

{ ... }: {
programs.home-manager.enable = true;
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "23.05";
imports = [ ../../../../common/desktop/home.nix ];
# Custom dconf settings
dconf.settings."org/gnome/desktop/input-sources" = {
xkb-options = [ "caps:swapescape" ];
};
}