mirror of
https://git.sr.ht/~neverness/ultima
synced 2024-12-27 18:43:52 +00:00
14 lines
245 B
Nix
14 lines
245 B
Nix
{ x, ... }:
|
|
{
|
|
imports = x.umport {
|
|
path = ./.;
|
|
# include & exclude files/directories
|
|
include = [ ];
|
|
exclude = [
|
|
./default.nix
|
|
./services/transmission/torque.nix
|
|
./programs/torrserver/package.nix
|
|
];
|
|
};
|
|
}
|