Compare commits
No commits in common. "8b0022fc254601d597781153cf1f0bc7246fe425" and "2dcb9e51f5fca98bdc9e431aa385acb246cd9295" have entirely different histories.
8b0022fc25
...
2dcb9e51f5
@ -4,4 +4,8 @@ let
|
|||||||
in
|
in
|
||||||
{
|
{
|
||||||
unstable-pkgs = unstable;
|
unstable-pkgs = unstable;
|
||||||
|
jackett = unstable.jackett;
|
||||||
|
radarr = unstable.radarr;
|
||||||
|
sonarr = unstable.sonarr;
|
||||||
|
emby = unstable.emby;
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,14 @@
|
|||||||
{ lib, stdenv, fetchgit }:
|
{ lib, stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name= "site-musique";
|
name= "site-musique-${version}";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://gitlab.com/nyanloutre/site-musique.git";
|
owner = "nyanloutre";
|
||||||
rev = "78e5d570534d528cdf19c44332cd2c929f6fa861";
|
repo = "site-musique";
|
||||||
sha256 = "0rv1il85gxvi4d6yal8ac7q9jjz0w0ghmklbwzpd3p04v34y1rpd";
|
rev = "42ffbfa85422f0d3e98e842ca702e07cb20be0c0";
|
||||||
|
sha256 = "1ndfwg6rpkm2hn5naw0c91l6zbpcd011irs8imchqzbj4m2i7wgm";
|
||||||
};
|
};
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -52,5 +52,8 @@
|
|||||||
|
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
|
|
||||||
|
system.autoUpgrade.enable = true;
|
||||||
|
systemd.services.nixos-upgrade.path = with pkgs; [ gzip gnutar xz.bin config.nix.package.out ];
|
||||||
|
|
||||||
system.stateVersion = "18.03";
|
system.stateVersion = "18.03";
|
||||||
}
|
}
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
users.defaultUserShell = pkgs.zsh;
|
users.defaultUserShell = pkgs.zsh;
|
||||||
programs.zsh = {
|
programs.zsh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autosuggestions.enable = true;
|
enableAutosuggestions = true;
|
||||||
enableCompletion = true;
|
enableCompletion = true;
|
||||||
syntaxHighlighting.enable = true;
|
syntaxHighlighting.enable = true;
|
||||||
interactiveShellInit = ''
|
interactiveShellInit = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user