mirror of
https://mau.dev/andreijiroh-dev/dotfiles.git
synced 2025-02-23 05:32:06 +00:00
Also set wakatime project name for @hackclub High Seas and for coding stats Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
18 lines
No EOL
528 B
Nix
18 lines
No EOL
528 B
Nix
# This is the meta config file for nixpkgs and nix cli
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
# Adopted from https://fnordig.de/til/nix/home-manager-allow-unfree.html,
|
|
# but we'll also enable it system-wide too.
|
|
nixpkgs = {
|
|
config = {
|
|
allowUnfree = true;
|
|
# https://github.com/nix-community/home-manager/issues/2942
|
|
allowUnfreePredicate = (_: true);
|
|
};
|
|
};
|
|
|
|
# Enable the Flakes feature and the accompanying new nix command-line tool
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
} |