hydra and package fixes

This commit is contained in:
Rouven Seifert 2023-05-02 00:04:26 +02:00
parent d41c30a414
commit f7931d72a8
Signed by: rouven.seifert
GPG key ID: B95E8FE6B11C4D09
3 changed files with 13 additions and 9 deletions

View file

@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1682779989, "lastModified": 1682977601,
"narHash": "sha256-H8AjcIBYFYrlRobYJ+n1B+ZJ6TsaaeZpuLn4iRqVvr4=", "narHash": "sha256-F1Va/Uiw2tVNn27FLqWyBkiqDyIm/eCamw9wA/GK8Fw=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "3144311f31194b537808ae6848f86f3dbf977d59", "rev": "0e4c33d76006c9080d2f228ba1c2308e3e4d7be6",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -46,11 +46,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1682951948, "lastModified": 1682976507,
"narHash": "sha256-w+auHu4yyZrt93zI/xyrgYrpXlDPmVfKL3Fs9DoF4fQ=", "narHash": "sha256-RC/zTlkOO1zl4vCw3iCH8G6owaf26gMAaQTOn9IEmGA=",
"owner": "hyprwm", "owner": "hyprwm",
"repo": "Hyprland", "repo": "Hyprland",
"rev": "45b1e6dc5ee42b01a377bd875181bc621c72f914", "rev": "c949173bc9c9f9e8276cba098cb82ed51ad4965b",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -8,6 +8,9 @@ in
port = 4000; port = 4000;
hydraURL = domain; hydraURL = domain;
notificationSender = "hydra@localhost"; notificationSender = "hydra@localhost";
buildMachinesFiles = [];
useSubstitutes = true;
}; };
services.nginx.virtualHosts."${domain}" = { services.nginx.virtualHosts."${domain}" = {
enableACME = true; enableACME = true;

View file

@ -1,8 +1,8 @@
{ lib, stdenv, fetchFromGitHub, gtk-engine-murrine }: { lib, stdenv, fetchFromGitHub}:
let let
themeName = "Dracula"; themeName = "Dracula";
version = "1.0"; version = "2021-07-21";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "dracula-icon-theme"; pname = "dracula-icon-theme";
@ -11,7 +11,7 @@ stdenv.mkDerivation {
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "m4thewz"; owner = "m4thewz";
repo = "dracula-icons"; repo = "dracula-icons";
rev = "main"; rev = "2d3c83caa8664e93d956cfa67a0f21418b5cdad8";
sha256 = "GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ="; sha256 = "GY+XxTM22jyNq8kaB81zNfHRhfXujArFcyzDa8kjxCQ=";
}; };
@ -26,6 +26,7 @@ stdenv.mkDerivation {
description = "Dracula Icon theme"; description = "Dracula Icon theme";
homepage = "https://github.com/m4thewz/dracula-icons"; homepage = "https://github.com/m4thewz/dracula-icons";
platforms = platforms.all; platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ therealr5 ]; maintainers = with maintainers; [ therealr5 ];
}; };
} }