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
|
@ -40,6 +40,7 @@
|
|||
nitrogen
|
||||
redshift
|
||||
networkmanager
|
||||
nixfmt
|
||||
|
||||
firefox
|
||||
discord
|
||||
|
@ -71,13 +72,6 @@
|
|||
];
|
||||
in packages;
|
||||
|
||||
home.sessionVariables = {
|
||||
EDITOR = "emacsclient";
|
||||
CC = "gcc";
|
||||
LSP_USE_PLISTS = "true";
|
||||
MOZ_USE_XINPUT2 = "1";
|
||||
};
|
||||
|
||||
### Services
|
||||
|
||||
# Compositor
|
||||
|
@ -96,6 +90,9 @@
|
|||
};
|
||||
|
||||
### Programs
|
||||
programs.home-manager.enable = true;
|
||||
programs.fish.enable = true;
|
||||
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
settings = {
|
||||
|
|
|
@ -80,6 +80,13 @@
|
|||
|
||||
documentation.dev.enable = true;
|
||||
|
||||
environment.variables = {
|
||||
EDITOR = "emacsclient";
|
||||
CC = "gcc";
|
||||
LSP_USE_PLISTS = "true";
|
||||
MOZ_USE_XINPUT2 = "1";
|
||||
};
|
||||
|
||||
### Services
|
||||
|
||||
# xserver and i3
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue