1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2024-12-28 10:33:52 +00:00
ultima/modules/nixos/default.nix

14 lines
245 B
Nix
Raw Permalink Normal View History

2024-12-20 13:10:11 +00:00
{ x, ... }:
{
2024-12-20 13:10:11 +00:00
imports = x.umport {
2024-12-21 09:11:03 +00:00
path = ./.;
2024-12-20 13:10:11 +00:00
# include & exclude files/directories
include = [ ];
exclude = [
2024-12-21 09:11:03 +00:00
./default.nix
2024-12-20 13:10:11 +00:00
./services/transmission/torque.nix
./programs/torrserver/package.nix
];
};
}