add ori home config
This commit is contained in:
parent
5d7e4b16b1
commit
e57625aa92
3 changed files with 317 additions and 32 deletions
47
hosts/ori/home.nix
Normal file
47
hosts/ori/home.nix
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
{ ... }: {
|
||||
home.stateVersion = "24.05";
|
||||
home.username = "jonathan";
|
||||
home.homeDirectory = "/home/jonathan";
|
||||
imports = [ ./gnome.nix ];
|
||||
|
||||
home.packages = with pkgs; [
|
||||
element-desktop
|
||||
atuin
|
||||
discord-canary
|
||||
comma
|
||||
(python3.withPackages (pip: with pip; [ numpy matplotlib ]))
|
||||
spotify
|
||||
firefox
|
||||
syncthing
|
||||
nixfmt
|
||||
xdg-utils
|
||||
# to copy from the command line (my zsh config has an alias `clip` to pipe things to the clipboard)
|
||||
wl-clipboard-rs
|
||||
prismlauncher
|
||||
graphviz-nox
|
||||
|
||||
jetbrains.rust-rover
|
||||
|
||||
libreoffice
|
||||
];
|
||||
|
||||
programs.firefox = { enable = true; };
|
||||
|
||||
services.syncthing = { enable = true; };
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
extraConfig = {
|
||||
init.defaultBranch = "main";
|
||||
pull.rebase = false;
|
||||
# merge.tool = "meld";
|
||||
# mergetool.meld.cmd = ''
|
||||
# ${pkgs.meld}/bin/meld "$LOCAL" "$BASE" "$REMOTE" --output "$MERGED"
|
||||
# '';
|
||||
push = { autoSetupRemote = true; };
|
||||
};
|
||||
aliases = { amend = "commit --amend"; };
|
||||
userName = "Jonathan Dönszelmann";
|
||||
userEmail = "jonathan@donsz.nl";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue