mirror of
https://github.com/adrlau/nix-dotfiles.git
synced 2025-01-10 11:11:14 +01:00
16 lines
228 B
Nix
16 lines
228 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./base.nix
|
||
|
../services/podgrab.nix
|
||
|
../services/jellyfin.nix
|
||
|
];
|
||
|
|
||
|
environment.systemPackages = with pkgs.unstable; [
|
||
|
];
|
||
|
|
||
|
|
||
|
|
||
|
}
|