infrastructure/nixos/hosts/thalassa/aoife/home/default.nix

15 lines
333 B
Nix
Raw Normal View History

2023-04-25 10:04:50 +02:00
{ ... }: {
2022-11-29 10:17:10 +01:00
programs.home-manager.enable = true;
home.username = "victor";
home.homeDirectory = "/home/victor";
home.stateVersion = "23.05";
2023-04-25 10:04:50 +02:00
imports = [ ../../../../common/desktop/home.nix ];
2023-04-25 09:30:41 +02:00
# Custom dconf settings
2023-04-25 10:04:50 +02:00
dconf.settings."org/gnome/desktop/input-sources" = {
xkb-options = [ "caps:swapescape" ];
2022-12-01 13:50:37 +01:00
};
2022-11-29 10:17:10 +01:00
}