{ config, pkgs, inputs, ... }: { # home.username = "prunebutt"; # home.homeDirectory = "/home/prunebutt"; home = let user = "prunebutt"; in { username = "${user}"; homeDirectory = "/home/${user}"; # You should not change this value, even if you update Home Manager. If you do # want to update the value, then make sure to first check the Home Manager # release notes. stateVersion = "23.11"; # Please read the comment before changing. # The home.packages option allows you to install Nix packages into your # environment. packages = [ # # It is sometimes useful to fine-tune packages, for example, by applying # # overrides. You can do that directly here, just don't forget the # # parentheses. Maybe you want to install Nerd Fonts with a limited number of # # fonts? # (pkgs.nerdfonts.override { fonts = [ "FantasqueSansMono" ]; }) # # You can also create simple shell scripts directly inside your # # configuration. For example, this adds a command 'my-hello' to your # # environment: # (pkgs.writeShellScriptBin "my-hello" '' # echo "Hello, ${config.home.username}!" # '') ## GNOME ]; }; myHomeManager = { bundles = { desktop.enable = true; maker.enable = true; graphicDesign.enable = true; }; }; programs.zsh.enable = true; # Let Home Manager install and manage itself. # programs.home-manager.enable = true; }