Files
nix/main.nix
2025-03-22 14:17:10 -05:00

14 lines
263 B
Nix

{ config, lib, pkgs, ... }:
{
imports = [
./core/core.nix
./packages/packages.nix
./gnome.nix
./theming.nix
];
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
}