hopefully the last complete restructure of this repo

This commit is contained in:
2024-10-24 15:34:23 -05:00
parent 8316336e0d
commit 77b7c16edc
123 changed files with 994 additions and 1313 deletions

View File

@@ -1,21 +0,0 @@
{
description = "System External Flakes";
inputs = {
waveforms.url = "github:liff/waveforms-flake";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
imports = [
inputs.waveforms.nixosModule
];
};
};
}

View File

@@ -1,17 +0,0 @@
{
description = "System packages";
inputs = {
external.url = "./external";
};
outputs = { self, ... }@inputs: {
module = { config, lib, pkgs, ... }: {
imports = [
inputs.external.module
];
};
};
}

View File

@@ -1,12 +0,0 @@
{
description = "System scripts";
inputs = {
};
outputs = { self, ... }: {
module = { config, lib, pkgs, ... }: {};
};
}