mirror of
https://github.com/davegallant/nix-config
synced 2025-08-08 05:52:28 +00:00
nix: Ensure nix bin is in path
This allows startx to load up with the correct paths.
This commit is contained in:
@@ -8,16 +8,15 @@
|
|||||||
};
|
};
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
audio-recorder
|
audio-recorder
|
||||||
awscli2
|
|
||||||
bandwhich
|
bandwhich
|
||||||
bat
|
bat
|
||||||
bind
|
bind
|
||||||
chromium
|
chromium
|
||||||
clipmenu
|
clipmenu
|
||||||
|
colordiff
|
||||||
curl
|
curl
|
||||||
direnv
|
direnv
|
||||||
dunst
|
dunst
|
||||||
element-desktop
|
|
||||||
exa
|
exa
|
||||||
fd
|
fd
|
||||||
firefox
|
firefox
|
||||||
@@ -53,8 +52,6 @@
|
|||||||
rustup
|
rustup
|
||||||
shellcheck
|
shellcheck
|
||||||
shfmt
|
shfmt
|
||||||
signal-desktop
|
|
||||||
slack
|
|
||||||
spotify
|
spotify
|
||||||
starship
|
starship
|
||||||
terraform
|
terraform
|
||||||
@@ -71,10 +68,19 @@
|
|||||||
zathura
|
zathura
|
||||||
zip
|
zip
|
||||||
|
|
||||||
|
# communication
|
||||||
|
element-desktop
|
||||||
|
signal-desktop
|
||||||
|
slack
|
||||||
|
|
||||||
## linux
|
# desktop environments
|
||||||
pavucontrol
|
bspwm
|
||||||
polybar
|
polybar
|
||||||
|
sxhkd
|
||||||
|
pavucontrol
|
||||||
|
|
||||||
|
## aws
|
||||||
|
awscli2
|
||||||
ssm-session-manager-plugin
|
ssm-session-manager-plugin
|
||||||
|
|
||||||
# python
|
# python
|
||||||
@@ -84,9 +90,6 @@
|
|||||||
python38Packages.virtualenv
|
python38Packages.virtualenv
|
||||||
black
|
black
|
||||||
|
|
||||||
# overlays
|
|
||||||
rfd
|
|
||||||
|
|
||||||
# fonts
|
# fonts
|
||||||
dejavu_fonts
|
dejavu_fonts
|
||||||
fira-code
|
fira-code
|
||||||
@@ -98,6 +101,10 @@
|
|||||||
noto-fonts-cjk
|
noto-fonts-cjk
|
||||||
noto-fonts-emoji
|
noto-fonts-emoji
|
||||||
noto-fonts-extra
|
noto-fonts-extra
|
||||||
|
|
||||||
|
# overlays
|
||||||
|
rfd
|
||||||
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -139,10 +146,13 @@
|
|||||||
initExtra = ''
|
initExtra = ''
|
||||||
export GOPATH=~/go
|
export GOPATH=~/go
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY=$(tty)
|
||||||
export PATH=$PATH:~/.local/bin
|
|
||||||
export PATH=$PATH:~/go/bin
|
|
||||||
export PATH=$PATH:~/.cargo/bin
|
export PATH=$PATH:~/.cargo/bin
|
||||||
|
export PATH=$PATH:~/.local/bin
|
||||||
|
export PATH=$PATH:~/.nix-profile/bin
|
||||||
export PATH=$PATH:~/.npm-packages/bin
|
export PATH=$PATH:~/.npm-packages/bin
|
||||||
|
export PATH=$PATH:~/go/bin
|
||||||
|
|
||||||
|
export CM_LAUNCHER=rofi
|
||||||
|
|
||||||
export LANG=en_US.UTF-8
|
export LANG=en_US.UTF-8
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user