# This is your home-manager configuration file # Use this to configure your home environment (it replaces ~/.config/nixpkgs/home.nix) { inputs, lib, config, pkgs, ... }: { # You can import other home-manager modules here imports = [ # If you want to use home-manager modules from other flakes (such as nix-colors): # inputs.nix-colors.homeManagerModule # You can also split up your configuration and import pieces of it here: # ./nvim.nix ./development ./dotfiles ./git ./IDEs ./ssh ./tools ./zsh ]; nixpkgs = { # You can add overlays here overlays = [ # If you want to use overlays exported from other flakes: # neovim-nightly-overlay.overlays.default # Or define it inline, for example: # (final: prev: { # hi = final.hello.overrideAttrs (oldAttrs: { # patches = [ ./change-hello-to-hi.patch ]; # }); # }) ]; # Configure your nixpkgs instance config = { # Disable if you don't want unfree packages allowUnfree = true; # Workaround for https://github.com/nix-community/home-manager/issues/2942 allowUnfreePredicate = _: true; }; }; home = { username = "noahk"; homeDirectory = "/home/noahk"; sessionPath = [ "$HOME/.cargo/bin" "$HOME/.local/bin" ]; sessionVariables = { SSH_AUTH_SOCK = "/home/noahk/.bitwarden-ssh-agent.sock"; }; packages = with pkgs; [ nerd-fonts.sauce-code-pro nerd-fonts.zed-mono # Desktop env discord spotify obsidian vlc # Security openvpn bitwarden-desktop bitwarden-cli # Development gnumake cmake gcc rustup mqttui binsider gpg-tui kmon ]; }; fonts.fontconfig.enable = true; # Enable home-manager and git programs.home-manager.enable = true; # Nicely reload system units when changing configs systemd.user.startServices = "sd-switch"; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion home.stateVersion = "25.05"; }