Skip to content

Instantly share code, notes, and snippets.

@architectureman
Created April 25, 2025 12:34
  • Select an option

Select an option

NixOS02
{ 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