infrastructure/nixos/hosts/thalassa/aoife/home/default.nix
Vivian c45c402512
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
updates
2023-05-02 10:05:49 +02:00

19 lines
391 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" ];
};
programs.zsh.envExtra = ''
source ~/.zshrc.secrets
'';
}