nix/hosts/nixos/deck/home.nix
2025-11-08 20:24:42 +01:00

14 lines
235 B
Nix

{ config, pkgs, ... }:
{
# Allow unfree packages in home-manager
nixpkgs.config.allowUnfree = true;
# Import the common NixOS home configuration
imports = [
../home-default.nix
];
home.packages = with pkgs; [
];
}