1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-13 20:30:02 +00:00

fix types for environment variables

This commit is contained in:
Daiderd Jordan 2016-12-17 23:14:55 +01:00
parent 0c4fbaf0d9
commit cf6d081c29
No known key found for this signature in database
GPG key ID: D02435D05B810C96
2 changed files with 2 additions and 2 deletions

View file

@ -41,7 +41,7 @@ in {
};
environment.profiles = mkOption {
type = types.listOf types.path;
type = types.listOf types.str;
default =
[ # Use user, default and system profiles.
"$HOME/.nix-profile"

View file

@ -35,7 +35,7 @@ in {
};
programs.tmux.loginShell = mkOption {
type = types.path;
type = types.str;
default = "$SHELL";
description = ''
Configure default login shell.