[Nix] Reorganizes files a bit.

This commit is contained in:
2025-02-10 20:03:49 -08:00
parent bc63a8952f
commit 908002fd6c
5 changed files with 69 additions and 55 deletions

View File

@@ -0,0 +1,10 @@
{ 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"];
}