pantheon/users/rafiq.nix

28 lines
746 B
Nix

{
self,
pkgs,
...
}: {
imports = [
./modules/git.nix # git specific configs
./modules/tmux.nix # tmux specific configs (might move this)
./modules/sh.nix # bash and other shell specific configs
./modules/wm.nix # window manager configs
./modules/editor.nix # editor specific configs
./modules/terminal.nix # terminal emulator configs
./modules/utils.nix # miscellaneous utilities
];
# This enables using home-manager from the command line.
programs.home-manager.enable = true;
home = {
username = "rafiq";
homeDirectory = "/home/rafiq";
# This defines the version home-manager
# was originally bulit against on this system.
# Do not change it.
stateVersion = "25.05";
};
}