12 lines
207 B
Nix
12 lines
207 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
imports = [
|
|
../home-default.nix
|
|
../../../modules/syncthing.nix
|
|
../../../modules/tex.nix
|
|
../../../modules/schedule.nix
|
|
];
|
|
}
|