8 lines
146 B
Nix
8 lines
146 B
Nix
{ config }:
|
|
let
|
|
term = config.defaultApplications.terminal;
|
|
shell = config.myShells.defaultShell;
|
|
in
|
|
[
|
|
"${term} --title=autorun ${shell}"
|
|
]
|