Added nl wifi password
This commit is contained in:
parent
c211604042
commit
ad00582a90
|
@ -1,13 +1,9 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [ ./bat.nix ./ssh.nix ./fish.nix ./tmux ./git.nix ./starship.nix ];
|
imports = [ ./bat.nix ./ssh.nix ./fish.nix ./tmux ./git.nix ./starship.nix ./direnv.nix ];
|
||||||
|
|
||||||
# Enable bash
|
# Enable bash
|
||||||
programs.bash.enable = true;
|
programs.bash.enable = true;
|
||||||
|
|
||||||
# Enable direnv
|
|
||||||
programs.direnv.enable = true;
|
|
||||||
programs.direnv.nix-direnv.enable = true;
|
|
||||||
|
|
||||||
# Install clis
|
# Install clis
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
tree # Print directory structure
|
tree # Print directory structure
|
||||||
|
|
11
home/adrielus/features/cli/direnv.nix
Normal file
11
home/adrielus/features/cli/direnv.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{
|
||||||
|
programs.direnv.enable = true;
|
||||||
|
programs.nix-direnv.enable = true;
|
||||||
|
|
||||||
|
home.sessionVariables = {
|
||||||
|
# No more long command warnings
|
||||||
|
DIRENV_WARN_TIMEOUT = "24h";
|
||||||
|
# No more usesless logs
|
||||||
|
DIRENV_LOG_FORMAT = "";
|
||||||
|
};
|
||||||
|
}
|
|
@ -11,6 +11,7 @@
|
||||||
networks = {
|
networks = {
|
||||||
"Neptune".psk = "@PHONE_HOTSPOT_PASS@";
|
"Neptune".psk = "@PHONE_HOTSPOT_PASS@";
|
||||||
"TP-Link_522C".psk = "@TG_HOME_PASS@";
|
"TP-Link_522C".psk = "@TG_HOME_PASS@";
|
||||||
|
"Sailhorse".psk = "@NL_SAILHORSE_PASS@";
|
||||||
};
|
};
|
||||||
|
|
||||||
# Imperative
|
# Imperative
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue