nixos/modules/system/default.nix

12 lines
133 B
Nix
Raw Normal View History

2024-05-27 22:40:30 +02:00
{ config, pkgs, ... }:
2024-05-25 01:32:48 +02:00
{
imports = [
2024-05-27 22:40:30 +02:00
./desktop
./hardware
./server
2024-05-27 23:31:44 +02:00
# Common configuration
./common.nix
2024-05-25 01:32:48 +02:00
];
}