-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- 创建 .gitignore 以排除不必要的文件和目录。 - 使用新的依赖项更新了 flake.lock,包括“deploy-rs”和各种“flake-compat”版本。 - 添加 flake.nix,其中包含核心系统、库和应用程序配置。 - 引入了各种系统的部署检查和默认配置。 - 为 aarch64-darwin 系统实现了用户和主配置。 - 添加了 GUI 应用程序和 CLI 工具配置,包括编辑器和终端设置。 - 建立了用于启用/禁用各种程序和服务的选项。
- Loading branch information
Showing
23 changed files
with
564 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.DS_Store | ||
./vscode | ||
./idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
inputs, | ||
... | ||
}: builtins.mapAttrs ( | ||
system: deploy-lib: deploy-lib.deployChecks inputs.self.deploy | ||
) inputs.deploy-rs.lib |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
lib, | ||
namespace, | ||
... | ||
}: let | ||
inherit (lib.${namespace}) enabled; | ||
in { | ||
${namespace} = { | ||
home = { | ||
enable = true; | ||
stateVersion = "24.11"; | ||
}; | ||
|
||
user = { | ||
enable = true; | ||
email = "[email protected]"; | ||
}; | ||
|
||
programs = { | ||
cli = { | ||
editor = { | ||
neovim = enabled; | ||
helix = enabled; | ||
}; | ||
|
||
shell = { | ||
prompt = { | ||
starship = enabled; | ||
}; | ||
}; | ||
}; | ||
|
||
gui = { | ||
editor = { | ||
obsidian = enabled; | ||
vscode = enabled; | ||
}; | ||
|
||
terminal.wezterm = enabled; | ||
|
||
windows.launcher.raycast = enabled; | ||
}; | ||
}; | ||
}; | ||
} |
Oops, something went wrong.