14 lines
235 B
Nix
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; [
|
|
];
|
|
}
|