nix/hosts/nixos/deck/home.nix
2025-10-28 18:37:44 +01:00

12 lines
229 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/gnome.nix
];
}