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

17 lines
314 B
Nix
Raw Normal View History

2023-09-25 11:56:02 +02:00
{ pkgs, ... }: {
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
};
2023-05-01 09:53:13 +02:00
programs.zsh.envExtra = ''
source ~/.zshrc.secrets
'';
2023-09-25 10:30:29 +02:00
home.packages = with pkgs; [
libreoffice-fresh
jetbrains.clion
2023-09-25 11:47:59 +02:00
jetbrains.rust-rover
2023-09-25 10:30:29 +02:00
];
2022-11-29 10:17:10 +01:00
}