From a2114923d09eb83efc18e184b92da7b528887f49 Mon Sep 17 00:00:00 2001 From: kalipso Date: Thu, 5 Oct 2023 19:31:01 +0200 Subject: [PATCH] [durruti] enable tasklist module --- flake.lock | 21 +++++++++++++++++++++ flake.nix | 5 +++++ machines/durruti/configuration.nix | 3 +++ 3 files changed, 29 insertions(+) diff --git a/flake.lock b/flake.lock index 1cd2df1..aa099d4 100644 --- a/flake.lock +++ b/flake.lock @@ -187,6 +187,7 @@ "nixpkgs": "nixpkgs_2", "nixpkgs-unstable": "nixpkgs-unstable", "sops-nix": "sops-nix", + "tasklist": "tasklist", "utils": "utils_3" } }, @@ -226,6 +227,26 @@ "type": "github" } }, + "tasklist": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1696525932, + "narHash": "sha256-LVnz6uIOR1QUPWERBe+nx8fM1wRM1SJf1WMuis9eh6E=", + "ref": "refs/heads/master", + "rev": "74e2f4e0a2a54fb11df59023fe0f188d0b5c3515", + "revCount": 10, + "type": "git", + "url": "https://git.dynamicdiscord.de/kalipso/tasklist" + }, + "original": { + "type": "git", + "url": "https://git.dynamicdiscord.de/kalipso/tasklist" + } + }, "utils": { "locked": { "lastModified": 1678901627, diff --git a/flake.nix b/flake.nix index 77646e9..ff56934 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,11 @@ sops-nix.inputs.nixpkgs.follows = "nixpkgs"; mfsync.url = "github:k4lipso/mfsync"; + tasklist = { + url = "git+https://git.dynamicdiscord.de/kalipso/tasklist"; + inputs.nixpkgs.follows = "nixpkgs"; + }; + ep3-bs = { url = "git+https://git.dynamicdiscord.de/kalipso/ep3-bs.nix"; inputs.nixpkgs.follows = "nixpkgs"; diff --git a/machines/durruti/configuration.nix b/machines/durruti/configuration.nix index f3fd7fd..c223ee9 100644 --- a/machines/durruti/configuration.nix +++ b/machines/durruti/configuration.nix @@ -20,11 +20,14 @@ with lib; imports = [ inputs.ep3-bs.nixosModules.ep3-bs + inputs.tasklist.nixosModules.malobeo-tasklist ../modules/malobeo_user.nix ../modules/sshd.nix ../modules/minimal_tools.nix ]; + services.malobeo-tasklist.enable = true; + services.ep3-bs = { enable = true; in_production = true;