[darwin] 在 nix darwin 上跑通了

This commit is contained in:
2026-01-18 16:11:59 +08:00
parent 4a1f41f034
commit bb40ace94d
10 changed files with 203 additions and 59 deletions
+16
View File
@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
{
home.homeDirectory = "/Users/origami";
imports = [
../modules/common.nix
../modules/shell.nix
../modules/shell-develop.nix
../modules/vscode.nix
];
programs.fish.shellAliases = {
"flake-update" = "home-manager switch --flake ${config.home.homeDirectory}/flakes#origami@hypnos";
};
}