forked from nico/dots
9 lines
194 B
Nix
9 lines
194 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
# Nix Configuration
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# Enable nix-command and flakes
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
}
|