Initial commit

This commit is contained in:
Sangmin Kim 2025-04-04 05:25:20 +09:00
commit 6c503c465b
9 changed files with 493 additions and 0 deletions

20
modules/nix-core.nix Normal file
View file

@ -0,0 +1,20 @@
{ pkgs, ... }:
{
nix.settings = {
# enable flakes globally
experimental-features = ["nix-command" "flakes"];
};
# Allow unfree packages
nixpkgs.config = {
allowUnfree = true;
allowBroken = true;
};
# Auto upgrade nix package and the daemon service.
nix.package = pkgs.nix;
# Enable Determinate
nix.enable = false;
}