Full Refactor and history reset

This commit is contained in:
2026-03-19 10:47:32 -05:00
commit c5d7d9e3da
65 changed files with 4632 additions and 0 deletions

28
nixcore.nix Normal file
View File

@@ -0,0 +1,28 @@
{
config,
lib,
pkgs,
...
}:
{
system.stateVersion = "23.11"; # Did you read the comment?
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
nix.settings.trusted-users = [
"root"
"joe"
];
boot.tmp.cleanOnBoot = true;
users.users.joe.packages = with pkgs; [
(import ./scripts/rebuild.nix { inherit pkgs; })
(import ./scripts/rebuild-boot.nix { inherit pkgs; })
(import ./scripts/rebuild-dry.nix { inherit pkgs; })
(import ./scripts/nixupdate.nix { inherit pkgs; })
(import ./scripts/nixclean.nix { inherit pkgs; })
];
}