1
0
Fork 0

Compare commits

..

No commits in common. "cc7edc9369d5be14447ca47a6ae09a9cd889482c" and "0425be94544579028ca5fe649117a6d6bfd4e71c" have entirely different histories.

3 changed files with 14 additions and 36 deletions

View file

@ -236,11 +236,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1707672157, "lastModified": 1707607386,
"narHash": "sha256-dzfGf+R+ECFKe4rw42vUn5mV0hMSGQRVJlhjRHs3cvM=", "narHash": "sha256-hj/RgQMTvCWQVInkZwiMMieumkfOjHXhtWhfuXHop/8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a09cfdbaf11c821340cff24d9ad1c264708ee12e", "rev": "bfd0ae29a86eff4603098683b516c67e22184511",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -305,11 +305,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1707674459, "lastModified": 1707616878,
"narHash": "sha256-rdAPFBkXksyBxANAoMvIcgtS1TqnRTikl+89MLZPfWQ=", "narHash": "sha256-lH3dtOn7N62gPriphyoFaGPhqhG9XPSv7KLT0OuaFKY=",
"ref": "refs/heads/master", "ref": "refs/heads/master",
"rev": "a20b38c0d68501207e6b22d6f376f00d18e37b58", "rev": "0ceb77bd40e3a815e4d7b45a7008bc309bdc2ce6",
"revCount": 706, "revCount": 705,
"type": "git", "type": "git",
"url": "https://git.kempkens.io/daniel/nix-overlay" "url": "https://git.kempkens.io/daniel/nix-overlay"
}, },
@ -356,11 +356,11 @@
}, },
"nixos-unstable": { "nixos-unstable": {
"locked": { "locked": {
"lastModified": 1707594574, "lastModified": 1707553665,
"narHash": "sha256-dsNAxqxAjajzZKJtMDyKCl6R2VOHCG5B5F0kmb08lA4=", "narHash": "sha256-r4c+DhHqIxFBDjmuItgv7pOzm75pR33MjhTx+wlRol0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "4907e7a50c83b6214239d30a833f59493754eb48", "rev": "8f9789aa7fe8fab4cc1bb41b7c7331cac9a36bbf",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -372,11 +372,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1707588924, "lastModified": 1707451808,
"narHash": "sha256-0e1ce6X5ghapv6cAF9rxLZKeNyFHHXsLbGxN2cQQE8U=", "narHash": "sha256-UwDBUNHNRsYKFJzyTMVMTF5qS4xeJlWoeyJf+6vvamU=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "10b813040df67c4039086db0f6eaf65c536886c6", "rev": "442d407992384ed9c0e6d352de75b69079904e4e",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -23,7 +23,7 @@ in
../nixos/attic.nix ../nixos/attic.nix
../nixos/ddg.nix #../nixos/bdfr-browser.nix
../nixos/tailscale.nix ../nixos/tailscale.nix

View file

@ -1,22 +0,0 @@
{ pkgs, lib, ... }:
{
systemd.services.ddg =
let
mounts = [ "mnt-media\\x2dscraper.mount" ];
in
{
description = "discord-downloader-go service";
requires = mounts;
wantedBy = [ "multi-user.target" ];
serviceConfig = {
Type = "exec";
WorkingDirectory = "/mnt/media-scraper/Discord";
User = "media_user";
Group = "media_group";
ExecStart = "${lib.getExe pkgs.discord-downloader-go}";
Restart = "on-failure";
};
};
}