nixcfg/homeManagerModules/default.nix

14 lines
224 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{ config, pkgs, ... }:
{
imports = [ ./cliApps ./guiApps ./desktopEnv ./userServices ];
2024-03-30 18:04:10 -04:00
nixpkgs = {
# Configure nixpkgs instance
config = {
# Enableunfree packages
allowUnfree = true;
};
};
2024-03-28 19:52:15 -04:00
}