❄️ Dotfiles for our NixOS system configuration.

chore: add comment

Chloe 31496a6e aa6d65ea

Changed files
+3 -1
modules
base
+3 -1
modules/base/nix.nix
···
{
nix = {
# Set up Nix's garbage collector to run automatically.
···
};
# Allow unfree packages.
-
# This is sadly not enough as I still have to pass the --impure flag. 😒
nixpkgs.config.allowUnfree = true;
}
···
+
# Partially taken from https://github.com/isabelroses/dotfiles/blob/main/modules/base/nix/nix.nix
+
{
nix = {
# Set up Nix's garbage collector to run automatically.
···
};
# Allow unfree packages.
+
# This is sadly not enough as I still have to pass the --impure flag. Yawn.
nixpkgs.config.allowUnfree = true;
}