about summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2019-04-07 20:09:46 +0200
committerGitHub <noreply@github.com>2019-04-07 20:09:46 +0200
commit2457510db48b0fc73fbea8b959a0647caddb19de (patch)
treead7acab4dbed26d655f2187643cb880d817759a2 /nixos/modules/programs
parentf84e71533398b28c6d6d4dfeb56139531be669bc (diff)
parent4c1af9b37164ccbbb7291ccb652d8c8a10c24f96 (diff)
downloadnixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar.gz
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar.bz2
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar.lz
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar.xz
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.tar.zst
nixlib-2457510db48b0fc73fbea8b959a0647caddb19de.zip
Merge pull request #51918 from bobvanderlinden/var-run
tree-wide: nixos: /var/run -> /run
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/bash/bash.nix2
-rw-r--r--nixos/modules/programs/fish.nix1
-rw-r--r--nixos/modules/programs/xonsh.nix1
-rw-r--r--nixos/modules/programs/zsh/zsh.nix1
4 files changed, 0 insertions, 5 deletions
diff --git a/nixos/modules/programs/bash/bash.nix b/nixos/modules/programs/bash/bash.nix
index d53c6b318f1d..27b5f9e4b642 100644
--- a/nixos/modules/programs/bash/bash.nix
+++ b/nixos/modules/programs/bash/bash.nix
@@ -226,9 +226,7 @@ in
 
     environment.shells =
       [ "/run/current-system/sw/bin/bash"
-        "/var/run/current-system/sw/bin/bash"
         "/run/current-system/sw/bin/sh"
-        "/var/run/current-system/sw/bin/sh"
         "${pkgs.bashInteractive}/bin/bash"
         "${pkgs.bashInteractive}/bin/sh"
       ];
diff --git a/nixos/modules/programs/fish.nix b/nixos/modules/programs/fish.nix
index bcb5a3f341b5..622d2f96fe41 100644
--- a/nixos/modules/programs/fish.nix
+++ b/nixos/modules/programs/fish.nix
@@ -232,7 +232,6 @@ in
 
     environment.shells = [
       "/run/current-system/sw/bin/fish"
-      "/var/run/current-system/sw/bin/fish"
       "${pkgs.fish}/bin/fish"
     ];
 
diff --git a/nixos/modules/programs/xonsh.nix b/nixos/modules/programs/xonsh.nix
index f967ca82ac8c..ceab9b5db931 100644
--- a/nixos/modules/programs/xonsh.nix
+++ b/nixos/modules/programs/xonsh.nix
@@ -50,7 +50,6 @@ in
 
     environment.shells =
       [ "/run/current-system/sw/bin/xonsh"
-        "/var/run/current-system/sw/bin/xonsh"
         "${pkgs.xonsh}/bin/xonsh"
       ];
 
diff --git a/nixos/modules/programs/zsh/zsh.nix b/nixos/modules/programs/zsh/zsh.nix
index deb94922da80..b7117e5f90d7 100644
--- a/nixos/modules/programs/zsh/zsh.nix
+++ b/nixos/modules/programs/zsh/zsh.nix
@@ -230,7 +230,6 @@ in
 
     environment.shells =
       [ "/run/current-system/sw/bin/zsh"
-        "/var/run/current-system/sw/bin/zsh"
         "${pkgs.zsh}/bin/zsh"
       ];