2013-09-18 03:18:34 +00:00
|
|
|
# This module defines a standard configuration for NixOS shells.
|
2012-07-25 14:53:46 +00:00
|
|
|
|
2018-07-20 20:56:59 +00:00
|
|
|
{ config, lib, ... }:
|
2012-07-25 14:53:46 +00:00
|
|
|
|
2014-04-14 14:26:48 +00:00
|
|
|
with lib;
|
2012-07-25 14:53:46 +00:00
|
|
|
|
|
|
|
{
|
2013-09-18 03:18:34 +00:00
|
|
|
|
|
|
|
config = {
|
|
|
|
|
|
|
|
environment.shellAliases =
|
|
|
|
{ ls = "ls --color=tty";
|
|
|
|
ll = "ls -l";
|
|
|
|
l = "ls -alh";
|
2012-07-25 14:53:46 +00:00
|
|
|
};
|
2013-09-18 03:18:34 +00:00
|
|
|
|
|
|
|
environment.shellInit =
|
|
|
|
''
|
|
|
|
# Set up the per-user profile.
|
2018-05-20 13:46:11 +00:00
|
|
|
mkdir -m 0755 -p "$NIX_USER_PROFILE_DIR"
|
2018-05-20 13:48:13 +00:00
|
|
|
if [ "$(stat --printf '%u' "$NIX_USER_PROFILE_DIR")" != "$(id -u)" ]; then
|
2018-05-20 13:48:32 +00:00
|
|
|
echo "WARNING: bad ownership on $NIX_USER_PROFILE_DIR, should be $(id -u)" >&2
|
2013-09-18 03:18:34 +00:00
|
|
|
fi
|
|
|
|
|
2018-05-20 13:48:13 +00:00
|
|
|
if [ -w "$HOME" ]; then
|
|
|
|
if ! [ -L "$HOME/.nix-profile" ]; then
|
|
|
|
if [ "$USER" != root ]; then
|
2018-05-20 13:46:11 +00:00
|
|
|
ln -s "$NIX_USER_PROFILE_DIR/profile" "$HOME/.nix-profile"
|
2014-02-20 18:34:12 +00:00
|
|
|
else
|
|
|
|
# Root installs in the system-wide profile by default.
|
2018-05-20 13:46:11 +00:00
|
|
|
ln -s /nix/var/nix/profiles/default "$HOME/.nix-profile"
|
2014-02-20 18:34:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
2013-09-18 03:18:34 +00:00
|
|
|
|
2014-02-20 18:34:12 +00:00
|
|
|
# Subscribe the root user to the NixOS channel by default.
|
2018-05-20 13:46:11 +00:00
|
|
|
if [ "$USER" = root -a ! -e "$HOME/.nix-channels" ]; then
|
2018-07-25 20:22:54 +00:00
|
|
|
echo "${config.system.defaultChannel} nixos" > "$HOME/.nix-channels"
|
2014-02-20 18:34:12 +00:00
|
|
|
fi
|
2013-09-18 03:18:34 +00:00
|
|
|
|
2014-02-20 18:34:12 +00:00
|
|
|
# Create the per-user garbage collector roots directory.
|
2018-05-20 13:46:11 +00:00
|
|
|
NIX_USER_GCROOTS_DIR="/nix/var/nix/gcroots/per-user/$USER"
|
|
|
|
mkdir -m 0755 -p "$NIX_USER_GCROOTS_DIR"
|
2018-05-20 13:48:13 +00:00
|
|
|
if [ "$(stat --printf '%u' "$NIX_USER_GCROOTS_DIR")" != "$(id -u)" ]; then
|
2018-05-20 13:48:32 +00:00
|
|
|
echo "WARNING: bad ownership on $NIX_USER_GCROOTS_DIR, should be $(id -u)" >&2
|
2014-02-20 18:34:12 +00:00
|
|
|
fi
|
2013-09-18 03:18:34 +00:00
|
|
|
|
2014-02-20 18:34:12 +00:00
|
|
|
# Set up a default Nix expression from which to install stuff.
|
2018-05-20 13:46:11 +00:00
|
|
|
if [ ! -e "$HOME/.nix-defexpr" -o -L "$HOME/.nix-defexpr" ]; then
|
|
|
|
rm -f "$HOME/.nix-defexpr"
|
|
|
|
mkdir -p "$HOME/.nix-defexpr"
|
2014-02-20 18:34:12 +00:00
|
|
|
if [ "$USER" != root ]; then
|
2018-05-20 13:46:11 +00:00
|
|
|
ln -s /nix/var/nix/profiles/per-user/root/channels "$HOME/.nix-defexpr/channels_root"
|
2014-02-20 18:34:12 +00:00
|
|
|
fi
|
|
|
|
fi
|
2013-09-18 03:18:34 +00:00
|
|
|
fi
|
2012-07-25 14:53:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
};
|
2013-09-18 03:18:34 +00:00
|
|
|
|
2012-07-25 14:53:46 +00:00
|
|
|
}
|