fix(nix): move environment variables and enable programs
Signed-off-by: Lucas Sta Maria <lucas@priime.dev>
This commit is contained in:
parent
f1a7c1656e
commit
5456ef3d2b
3 changed files with 14 additions and 8 deletions
|
@ -50,11 +50,13 @@
|
||||||
xdotool
|
xdotool
|
||||||
ripgrep
|
ripgrep
|
||||||
fd
|
fd
|
||||||
|
home-manager
|
||||||
|
|
||||||
nix-index
|
nix-index
|
||||||
|
nixfmt
|
||||||
|
|
||||||
|
rustc
|
||||||
cargo
|
cargo
|
||||||
rustup
|
|
||||||
rustfmt
|
rustfmt
|
||||||
clippy
|
clippy
|
||||||
rust-analyzer
|
rust-analyzer
|
||||||
|
|
|
@ -40,6 +40,7 @@
|
||||||
nitrogen
|
nitrogen
|
||||||
redshift
|
redshift
|
||||||
networkmanager
|
networkmanager
|
||||||
|
nixfmt
|
||||||
|
|
||||||
firefox
|
firefox
|
||||||
discord
|
discord
|
||||||
|
@ -71,13 +72,6 @@
|
||||||
];
|
];
|
||||||
in packages;
|
in packages;
|
||||||
|
|
||||||
home.sessionVariables = {
|
|
||||||
EDITOR = "emacsclient";
|
|
||||||
CC = "gcc";
|
|
||||||
LSP_USE_PLISTS = "true";
|
|
||||||
MOZ_USE_XINPUT2 = "1";
|
|
||||||
};
|
|
||||||
|
|
||||||
### Services
|
### Services
|
||||||
|
|
||||||
# Compositor
|
# Compositor
|
||||||
|
@ -96,6 +90,9 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
### Programs
|
### Programs
|
||||||
|
programs.home-manager.enable = true;
|
||||||
|
programs.fish.enable = true;
|
||||||
|
|
||||||
programs.alacritty = {
|
programs.alacritty = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
|
|
|
@ -80,6 +80,13 @@
|
||||||
|
|
||||||
documentation.dev.enable = true;
|
documentation.dev.enable = true;
|
||||||
|
|
||||||
|
environment.variables = {
|
||||||
|
EDITOR = "emacsclient";
|
||||||
|
CC = "gcc";
|
||||||
|
LSP_USE_PLISTS = "true";
|
||||||
|
MOZ_USE_XINPUT2 = "1";
|
||||||
|
};
|
||||||
|
|
||||||
### Services
|
### Services
|
||||||
|
|
||||||
# xserver and i3
|
# xserver and i3
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue