1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 19:47:47 +00:00

Use all env vars for nushell

This commit is contained in:
RGBCube 2023-12-06 01:57:35 +03:00
parent b388135b21
commit b86f2a7fd2
No known key found for this signature in database
4 changed files with 6 additions and 9 deletions

View file

@ -1,7 +1,7 @@
{ theme, homeConfiguration, enabled, ... }:
homeConfiguration [ "nixos" "root" ] {
programs.nushell.environmentVariables = {
home.sessionVariables = {
MANPAGER = ''"bat --plain --language man"'';
PAGER = ''"bat --plain"'';
};

View file

@ -1,10 +1,11 @@
{ lib, pkgs, homeConfiguration, homePackages, enabled, ... }: lib.recursiveUpdate
(homeConfiguration [ "nixos" "root" ] {
programs.nushell.environmentVariables.EDITOR = "hx";
programs.nushell.shellAliases.x = "hx";
programs.nushell.shellAliases.x = "hx";
programs.helix = enabled {
defaultEditor = true;
settings.theme = "base16_transparent";
settings.editor = {

View file

@ -11,9 +11,7 @@
configFile.source = ./configuration.nu;
envFile.source = ./environment.nu;
environmentVariables = {
inherit (config.environment.variables) NIX_LD;
};
environmentVariables = config.environment.variables;
shellAliases = {
cdtmp = "cd (mktemp --directory)";

View file

@ -5,9 +5,7 @@ systemConfiguration {
sound = enabled {};
services.pipewire = enabled {
alsa = enabled {
support32Bit = true;
};
alsa = enabled { support32Bit = true; };
pulse = enabled {};
};
}