mirror of
https://github.com/thilobillerbeck/dotfiles.git
synced 2024-11-22 16:08:50 +01:00
ajusted some options
This commit is contained in:
parent
45dd334231
commit
dea45b282e
6 changed files with 48 additions and 7 deletions
2
dotfiles/.gitignore
vendored
Normal file
2
dotfiles/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
.devenv*
|
||||||
|
.direnv*
|
|
@ -33,6 +33,7 @@
|
||||||
include "/usr/share/nano/*.nanorc"
|
include "/usr/share/nano/*.nanorc"
|
||||||
'';
|
'';
|
||||||
".ssh/config".source = ./../dotfiles/ssh-config;
|
".ssh/config".source = ./../dotfiles/ssh-config;
|
||||||
|
".gitignore".source = ./../dotfiles/.gitignore;
|
||||||
};
|
};
|
||||||
sessionVariables = {
|
sessionVariables = {
|
||||||
|
|
||||||
|
|
|
@ -27,6 +27,8 @@
|
||||||
vistafonts
|
vistafonts
|
||||||
hub
|
hub
|
||||||
httpie
|
httpie
|
||||||
|
manix
|
||||||
|
anki
|
||||||
] ++ [
|
] ++ [
|
||||||
(import (fetchTarball
|
(import (fetchTarball
|
||||||
"https://github.com/cachix/devenv/archive/v0.6.2.tar.gz")).default
|
"https://github.com/cachix/devenv/archive/v0.6.2.tar.gz")).default
|
||||||
|
|
34
pkgs/spx-gc.nix
Normal file
34
pkgs/spx-gc.nix
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, buildNpmPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildNpmPackage rec {
|
||||||
|
pname = "spx-gc";
|
||||||
|
version = "1.1.2";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "TuomoKu";
|
||||||
|
repo = "SPX-GC";
|
||||||
|
rev = "v.${version}";
|
||||||
|
hash = "sha256-NVppqlQOpOmBtsoDVhaIiHzc360ek273rpr2i9p8WK8=";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontNpmBuild = true;
|
||||||
|
|
||||||
|
npmDepsHash = "sha256-TGiurf/vwGV1KBxQXl0gVDNeZZWrW1Yku3fhTmh3nhk=";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
mkdir -p $out/locales
|
||||||
|
cp -r $src/locales/* $out/locales
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "SPX is a graphics control client for live video productions and live streams using CasparCG, OBS, vMix, or similar software";
|
||||||
|
homepage = "https://github.com/TuomoKu/SPX-GC#npminstall";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ ];
|
||||||
|
mainProgram = "spx";
|
||||||
|
};
|
||||||
|
}
|
|
@ -19,7 +19,7 @@
|
||||||
rerere = { enabled = "1"; };
|
rerere = { enabled = "1"; };
|
||||||
core = {
|
core = {
|
||||||
whitespace = "fix,-indent-with-non-tab,trailing-space,cr-at-eol";
|
whitespace = "fix,-indent-with-non-tab,trailing-space,cr-at-eol";
|
||||||
excludesfile = "~/.gitignore-rab";
|
excludesfile = "~/.gitignore";
|
||||||
autocrlf = "input";
|
autocrlf = "input";
|
||||||
};
|
};
|
||||||
apply = { whitespace = "nowarn"; };
|
apply = { whitespace = "nowarn"; };
|
||||||
|
|
|
@ -4,12 +4,14 @@
|
||||||
programs.topgrade = {
|
programs.topgrade = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
misc = {
|
||||||
assume_yes = true;
|
assume_yes = true;
|
||||||
ignore_failures = [ "git_repos" ];
|
ignore_failures = [ "git_repos" ];
|
||||||
no_retry = true;
|
no_retry = true;
|
||||||
pre_sudo = false;
|
pre_sudo = false;
|
||||||
cleanup = true;
|
cleanup = true;
|
||||||
skip_notify = true;
|
skip_notify = true;
|
||||||
|
};
|
||||||
firmware = { upgrade = true; };
|
firmware = { upgrade = true; };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue