nixcfg/homeManagerModules/default.nix
2024-03-30 18:04:10 -04:00

14 lines
224 B
Nix

{ config, pkgs, ... }:
{
imports = [ ./cliApps ./guiApps ./desktopEnv ./userServices ];
nixpkgs = {
# Configure nixpkgs instance
config = {
# Enableunfree packages
allowUnfree = true;
};
};
}