restarted from the very beginning

This commit is contained in:
kenji
2025-12-22 08:42:00 -06:00
parent fc765ee94f
commit ec424cd6d8
14 changed files with 0 additions and 809 deletions
-37
View File
@@ -1,37 +0,0 @@
{
inputs,
myConfig,
pkgs,
system,
...
}: {
imports = [
inputs.home-manager.darwinModules.home-manager
];
nix.settings.experimental-features = "nix-command flakes";
programs = {
zsh.enable = true;
fish.enable = true;
home-manager.enable = true;
};
nixpkgs.hostPlatform = "aarch64-darwin";
security.pam.services.sudo_local.touchIdAuth = true;
users.users.${myConfig.Darwin.username} = {
name = "${myConfig.Darwin.username}";
home = "/Users/${myConfig.Darwin.username}";
# shell = pkgs.${myConfig.general.terminal.Shell}; # no support for nix-darwin, but can be changed via chsh.
};
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = {inherit pkgs system;};
users.${myConfig.Darwin.username} = import ../../../home/darwin/home.nix;
};
system.stateVersion = 5;
}