Created
April 25, 2025 12:34
NixOS02
This file contains hidden or 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
| { config, pkgs, system, inputs, ... }: | |
| { | |
| home.username = "rnd"; | |
| home.homeDirectory = "/home/rnd"; | |
| # Packages that should be installed to the user profile. | |
| home.packages = with pkgs; [ | |
| git | |
| gitbutler | |
| vscode | |
| ghostty | |
| oh-my-zsh | |
| inputs.zen-browser.packages."${system}".default | |
| ]; | |
| programs.zsh.enable = true; | |
| # 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 = "24.11"; | |
| # Let home Manager install and manage itself. | |
| programs.home-manager.enable = true; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment