Compare commits
4 Commits
2dcb9e51f5
...
8b0022fc25
Author | SHA1 | Date | |
---|---|---|---|
8b0022fc25 | |||
eb21ced473 | |||
06551f28c5 | |||
c7fdc18c0c |
@ -4,8 +4,4 @@ let
|
||||
in
|
||||
{
|
||||
unstable-pkgs = unstable;
|
||||
jackett = unstable.jackett;
|
||||
radarr = unstable.radarr;
|
||||
sonarr = unstable.sonarr;
|
||||
emby = unstable.emby;
|
||||
}
|
||||
|
@ -1,14 +1,12 @@
|
||||
{ lib, stdenv, fetchFromGitHub }:
|
||||
{ lib, stdenv, fetchgit }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name= "site-musique-${version}";
|
||||
version = "1.0.0";
|
||||
name= "site-musique";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nyanloutre";
|
||||
repo = "site-musique";
|
||||
rev = "42ffbfa85422f0d3e98e842ca702e07cb20be0c0";
|
||||
sha256 = "1ndfwg6rpkm2hn5naw0c91l6zbpcd011irs8imchqzbj4m2i7wgm";
|
||||
src = fetchgit {
|
||||
url = "https://gitlab.com/nyanloutre/site-musique.git";
|
||||
rev = "78e5d570534d528cdf19c44332cd2c929f6fa861";
|
||||
sha256 = "0rv1il85gxvi4d6yal8ac7q9jjz0w0ghmklbwzpd3p04v34y1rpd";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
|
@ -52,8 +52,5 @@
|
||||
|
||||
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";
|
||||
}
|
||||
|
@ -62,7 +62,7 @@
|
||||
users.defaultUserShell = pkgs.zsh;
|
||||
programs.zsh = {
|
||||
enable = true;
|
||||
enableAutosuggestions = true;
|
||||
autosuggestions.enable = true;
|
||||
enableCompletion = true;
|
||||
syntaxHighlighting.enable = true;
|
||||
interactiveShellInit = ''
|
||||
|
Loading…
Reference in New Issue
Block a user