16 lines
333 B
Nix
16 lines
333 B
Nix
{ pkgs, ... }:
|
|
{
|
|
home.packages = with pkgs; [
|
|
# Useful for getting the import information from github info for flakes.
|
|
nix-prefetch-github
|
|
];
|
|
|
|
# Enable flakes and nix-commnands.
|
|
nix.settings.experimental-features = ["flakes" "nix-command"];
|
|
|
|
# Allow unfree code
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
};
|
|
}
|