nix/hosts/nixos/thinkpad/home.nix
2025-10-18 14:44:56 +02:00

16 lines
379 B
Nix

{ config, pkgs, ... }:
{
# Allow unfree packages in home-manager
nixpkgs.config.allowUnfree = true;
# Import the common NixOS home configuration
imports = [
../home-default.nix
../../../modules/syncthing.nix
../../../modules/tex.nix
];
# Any ThinkPad-specific home configurations can be added here
# For example, laptop-specific aliases or scripts
}