Reinitialized repo after massive overhaul
This commit is contained in:
21
system/packages/external/flake.nix
vendored
Normal file
21
system/packages/external/flake.nix
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
description = "System External Flakes";
|
||||
|
||||
inputs = {
|
||||
|
||||
waveforms.url = "github:liff/waveforms-flake";
|
||||
|
||||
};
|
||||
|
||||
outputs = { self, ... }@inputs: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {
|
||||
|
||||
imports = [
|
||||
inputs.waveforms.nixosModule
|
||||
];
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
17
system/packages/flake.nix
Normal file
17
system/packages/flake.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{
|
||||
description = "System packages";
|
||||
|
||||
inputs = {
|
||||
external.url = "./external";
|
||||
};
|
||||
|
||||
outputs = { self, ... }@inputs: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {
|
||||
imports = [
|
||||
inputs.external.module
|
||||
];
|
||||
};
|
||||
|
||||
};
|
||||
}
|
||||
12
system/packages/scripts/flake.nix
Normal file
12
system/packages/scripts/flake.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{
|
||||
description = "System scripts";
|
||||
|
||||
inputs = {
|
||||
};
|
||||
|
||||
outputs = { self, ... }: {
|
||||
|
||||
module = { config, lib, pkgs, ... }: {};
|
||||
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user