os/modules/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.3 KiB
Nix
Raw Normal View History

2023-09-12 20:07:05 +00:00
{
2023-10-03 12:21:09 +00:00
self,
inputs,
...
}: {
2023-09-12 20:07:05 +00:00
flake = {
2023-10-03 12:21:09 +00:00
nixosModules = rec {
acme = import ./acme;
2023-10-26 13:53:35 +00:00
adb = import ./adb;
2023-09-12 20:07:05 +00:00
arduino = import ./arduino;
audio = import ./audio;
bluetooth = import ./bluetooth;
2023-09-12 20:07:05 +00:00
core = import ./core;
crypto = import ./crypto;
2023-10-07 19:11:08 +00:00
desktop-extended = import ./desktop-extended;
2023-09-12 20:07:05 +00:00
docker = import ./docker;
gaming = import ./gaming;
graphical = import ./graphical;
2023-10-26 13:53:35 +00:00
invoiceplane = import ./invoiceplane;
2023-09-12 20:07:05 +00:00
nix = import ./nix;
office = import ./office;
persistence = import ./persistence;
portable = import ./portable;
2023-09-12 20:07:05 +00:00
printing = import ./printing;
proxy = import ./proxy;
2023-09-12 20:07:05 +00:00
terminal-life = import ./terminal-life;
user = import ./user;
virtualisation = import ./virtualisation;
2024-02-12 15:46:46 +00:00
wireguard = import ./wireguard;
2023-11-08 17:52:09 +00:00
wireshark = import ./wireshark;
2023-10-03 12:21:09 +00:00
base.imports = [
self.nixosModules.home-manager
inputs.agenix.nixosModules.default
2023-10-07 18:14:16 +00:00
self.nixosModules.overlays
2023-10-03 12:21:09 +00:00
self.nixosModules.core
self.nixosModules.crypto
self.nixosModules.nix
self.nixosModules.terminal-life
2024-02-12 15:46:46 +00:00
self.nixosModules.wireguard
2023-10-03 12:21:09 +00:00
self.nixosModules.root
self.nixosModules.user
2023-10-03 12:21:09 +00:00
];
2023-09-12 20:07:05 +00:00
};
};
}