git config is in development
This commit is contained in:
parent
976ff9bbd3
commit
d22a0381a5
2 changed files with 22 additions and 29 deletions
|
@ -13,9 +13,11 @@ let machine = ./machines/chupacabra.nix; in
|
|||
./modules/shell.nix
|
||||
./modules/tarsnap.nix
|
||||
./modules/vim.nix
|
||||
./modules/alsi.nix
|
||||
|
||||
./modules/lib/cloneRepo.nix
|
||||
|
||||
./modules/urbint
|
||||
|
||||
machine
|
||||
];
|
||||
|
||||
|
@ -47,6 +49,9 @@ let machine = ./machines/chupacabra.nix; in
|
|||
peek
|
||||
signal-desktop
|
||||
apvlv # pdf viewer
|
||||
vlc
|
||||
irssi
|
||||
gnutls
|
||||
|
||||
# System utilities
|
||||
htop
|
||||
|
@ -60,18 +65,12 @@ let machine = ./machines/chupacabra.nix; in
|
|||
zip
|
||||
tree
|
||||
ncat
|
||||
unzip
|
||||
|
||||
# Security
|
||||
gnupg
|
||||
|
||||
# Programming
|
||||
jq
|
||||
gitAndTools.hub
|
||||
gitAndTools.tig
|
||||
shellcheck
|
||||
httpie
|
||||
entr
|
||||
gnumake
|
||||
keybase
|
||||
openssl
|
||||
|
||||
# Spotify...etc
|
||||
spotify
|
||||
|
@ -87,25 +86,6 @@ let machine = ./machines/chupacabra.nix; in
|
|||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
programs.git = {
|
||||
enable = true;
|
||||
userEmail = "root@gws.fyi";
|
||||
userName = "Griffin Smith";
|
||||
ignores = [
|
||||
"*.sw*"
|
||||
".classpath"
|
||||
".project"
|
||||
".settings/"
|
||||
".dir-locals.el"
|
||||
".stack-work-profiling"
|
||||
".projectile"
|
||||
];
|
||||
extraConfig = {
|
||||
github.user = "glittershark";
|
||||
merge.conflictstyle = "diff3";
|
||||
};
|
||||
};
|
||||
|
||||
programs.password-store.enable = true;
|
||||
|
||||
services.redshift = {
|
||||
|
@ -125,4 +105,11 @@ let machine = ./machines/chupacabra.nix; in
|
|||
services.gpg-agent = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
gtk = {
|
||||
enable = true;
|
||||
gtk3.bookmarks = [
|
||||
"file:///home/grfn/code"
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
@ -21,6 +21,12 @@
|
|||
sha256 = "0zz2lrwn3y3rb8gzaiwxgz02dvy3s552zc70zvfqc0zh5dhydgn7";
|
||||
}) { inherit pkgs; }).yarn2nix
|
||||
julia
|
||||
(pkgs.callPackage (pkgs.fetchFromGitHub {
|
||||
owner = "hlolli";
|
||||
repo = "clj2nix";
|
||||
rev = "3ab3480a25e850b35d1f532a5e4e7b3202232383";
|
||||
sha256 = "1lry026mlpxp1j563qs13nhxf37i2zpl7lh0lgfdwc44afybqka6";
|
||||
}) {})
|
||||
];
|
||||
|
||||
programs.git = {
|
||||
|
|
Loading…
Reference in a new issue