mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 01:33:55 -05:00
14 lines
224 B
Nix
14 lines
224 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./cliApps ./guiApps ./desktopEnv ./userServices ];
|
|
|
|
nixpkgs = {
|
|
# Configure nixpkgs instance
|
|
config = {
|
|
# Enableunfree packages
|
|
allowUnfree = true;
|
|
};
|
|
};
|
|
}
|