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:
parent
0c4fbaf0d9
commit
cf6d081c29
2 changed files with 2 additions and 2 deletions
|
@ -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"
|
||||
|
|
|
@ -35,7 +35,7 @@ in {
|
|||
};
|
||||
|
||||
programs.tmux.loginShell = mkOption {
|
||||
type = types.path;
|
||||
type = types.str;
|
||||
default = "$SHELL";
|
||||
description = ''
|
||||
Configure default login shell.
|
||||
|
|
Loading…
Add table
Reference in a new issue