-
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.
- Loading branch information
Showing
4 changed files
with
114 additions
and
11 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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.swp | ||
result* | ||
result* | ||
.idea/ |
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,21 @@ | ||
{ config, lib, pkgs, ... }: | ||
|
||
{ | ||
# Home Manager needs a bit of information about you and the | ||
# paths it should manage. | ||
# home.username = "gang.liu"; | ||
# home.homeDirectory = "/Users/gang.liu"; | ||
|
||
# This value determines the Home Manager release that your | ||
# configuration is compatible with. This helps avoid breakage | ||
# when a new Home Manager release introduces backwards | ||
# incompatible changes. | ||
# | ||
# You can update Home Manager without changing this value. See | ||
# the Home Manager release notes for a list of state version | ||
# changes in each release. | ||
home.stateVersion = "23.11"; | ||
|
||
# Let Home Manager install and manage itself. | ||
programs.home-manager.enable = true; | ||
} |