dots/modules/nix/linux.nix
Nico 3660ef23f1 chore: organise modules
Organise modules in a significantly better way with categories.
2025-05-03 16:34:35 +10:00

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" ];
}