33 lines
732 B
Nix
33 lines
732 B
Nix
# Entry point for the shihaam home-manager profile (see flake.nix).
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./bash.nix
|
|
./packages.nix
|
|
./fonts.nix
|
|
./nano.nix
|
|
./obs.nix
|
|
./sway.nix
|
|
];
|
|
|
|
home.username = "shihaam";
|
|
home.homeDirectory = "/home/shihaam";
|
|
home.stateVersion = "26.05";
|
|
|
|
#############################################################################
|
|
# Environment
|
|
#############################################################################
|
|
|
|
home.sessionVariables = {
|
|
EDITOR = "nano";
|
|
COMPOSE_DOCKER_CLI_BUILD = "1";
|
|
DOCKER_BUILDKIT = "1";
|
|
BITWARDENCLI_APPDATA_DIR = "${config.xdg.configHome}/bitwarden-cli";
|
|
};
|
|
|
|
home.sessionPath = [
|
|
"$HOME/scripts"
|
|
];
|
|
}
|