From 62765d28f1e046e74024f7c0abc745f5331964c8 Mon Sep 17 00:00:00 2001 From: Vegard Bieker Matthey Date: Sat, 7 Mar 2026 20:35:06 +0100 Subject: [PATCH] stub: wasted init --- flake.nix | 3 +++ modules/wasted.nix | 15 +++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 modules/wasted.nix diff --git a/flake.nix b/flake.nix index 5770e0a..b36146b 100644 --- a/flake.nix +++ b/flake.nix @@ -23,6 +23,9 @@ dibbler.url = "git+https://git.pvv.ntnu.no/Projects/dibbler.git?ref=main"; dibbler.inputs.nixpkgs.follows = "nixpkgs"; + worblehat.url = "git+https://git.pvv.ntnu.no/Projects/worblehat.git?ref=main"; + worblehat.inputs.nixpkgs.follows = "nixpkgs"; + matrix-next.url = "github:dali99/nixos-matrix-modules/v0.8.0"; matrix-next.inputs.nixpkgs.follows = "nixpkgs"; diff --git a/modules/wasted.nix b/modules/wasted.nix new file mode 100644 index 0000000..97933a5 --- /dev/null +++ b/modules/wasted.nix @@ -0,0 +1,15 @@ +{ + config, + lib, + pkgs, + unstablePkgs, + values, + ... +}: +let + dibbler = config.services.dibbler; + worblehat = config.services.worblehat; + machine = config.networking.hostName; +in +{ +}